]> git.lizzy.rs Git - rust.git/commitdiff
Change std::fmt::{Float,LowerExp,UpperExp} to not print '-NaN' for f32::NAN and f64...
authornham <hamann.nick@gmail.com>
Mon, 11 Aug 2014 19:00:07 +0000 (15:00 -0400)
committernham <hamann.nick@gmail.com>
Tue, 12 Aug 2014 02:24:01 +0000 (22:24 -0400)
src/libcore/fmt/mod.rs
src/test/run-pass/format-nan.rs [new file with mode: 0644]

index 48bbc8401fe96987fc6e5eb0d523026bb7d6ad7a..9cb64747c91b42ca2e73b144e57b8a80b10f0257 100644 (file)
@@ -19,6 +19,7 @@
 use iter::{Iterator, range};
 use kinds::Copy;
 use mem;
+use num::Float;
 use option::{Option, Some, None};
 use ops::Deref;
 use result::{Ok, Err};
@@ -584,7 +585,7 @@ fn fmt(&self, fmt: &mut Formatter) -> Result {
                                              float::ExpNone,
                                              false,
                                              |bytes| {
-                fmt.pad_integral(*self >= 0.0, "", bytes)
+                fmt.pad_integral(self.is_nan() || *self >= 0.0, "", bytes)
             })
         }
     }
@@ -605,7 +606,7 @@ fn fmt(&self, fmt: &mut Formatter) -> Result {
                                              float::ExpDec,
                                              false,
                                              |bytes| {
-                fmt.pad_integral(*self >= 0.0, "", bytes)
+                fmt.pad_integral(self.is_nan() || *self >= 0.0, "", bytes)
             })
         }
     }
@@ -626,7 +627,7 @@ fn fmt(&self, fmt: &mut Formatter) -> Result {
                                              float::ExpDec,
                                              true,
                                              |bytes| {
-                fmt.pad_integral(*self >= 0.0, "", bytes)
+                fmt.pad_integral(self.is_nan() || *self >= 0.0, "", bytes)
             })
         }
     }
diff --git a/src/test/run-pass/format-nan.rs b/src/test/run-pass/format-nan.rs
new file mode 100644 (file)
index 0000000..1024bc2
--- /dev/null
@@ -0,0 +1,18 @@
+// Copyright 2014 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.
+
+pub fn main() {
+    use std::f64;
+    let x = "NaN".to_string();
+    assert_eq!(format!("{}", f64::NAN), x);
+    assert_eq!(format!("{:e}", f64::NAN), x);
+    assert_eq!(format!("{:E}", f64::NAN), x);
+}
+