]> git.lizzy.rs Git - rust.git/blobdiff - src/etc/test-float-parse/runtests.py
Auto merge of #57118 - Zoxc:query-stats, r=wesleywiser
[rust.git] / src / etc / test-float-parse / runtests.py
index 75c92b9b15ca28f6731ec75d16f8f03a09768304..852bc77589616a6cc3d2d29e4a8d73ebb3465d20 100644 (file)
@@ -1,14 +1,4 @@
-#!/usr/bin/python2.7
-#
-# Copyright 2015 The Rust Project Developers. See the COPYRIGHT
-# file at the top-level directory of this distribution and at
-# http://rust-lang.org/COPYRIGHT.
-#
-# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-# option. This file may not be copied, modified, or distributed
-# except according to those terms.
+#!/usr/bin/env python2.7
 
 """
 Testing dec2flt
@@ -41,7 +31,7 @@ Instead, we take the input and compute the true value with bignum arithmetic
 (as a fraction, using the ``fractions`` module).
 
 Given an input string and the corresponding float computed via Rust, simply
-decode the float into f * 2^k (for intergers f, k) and the ULP.
+decode the float into f * 2^k (for integers f, k) and the ULP.
 We can now easily compute the error and check if it is within 0.5 ULP as it
 should be. Zero and infinites are handled similarly: