Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1352)

Unified Diff: third_party/cython/src/Cython/Includes/libc/float.pxd

Issue 385073004: Adding cython v0.20.2 in third-party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference cython dev list thread. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/cython/src/Cython/Includes/libc/float.pxd
diff --git a/third_party/cython/src/Cython/Includes/libc/float.pxd b/third_party/cython/src/Cython/Includes/libc/float.pxd
new file mode 100644
index 0000000000000000000000000000000000000000..c443869f72092e52429db25e5591a5a84e64f463
--- /dev/null
+++ b/third_party/cython/src/Cython/Includes/libc/float.pxd
@@ -0,0 +1,43 @@
+# 5.2.4.2.2 Characteristics of floating types <float.h>
+
+cdef extern from "float.h":
+
+ enum: FLT_RADIX
+
+ enum: FLT_MANT_DIG
+ enum: DBL_MANT_DIG
+ enum: LDBL_MANT_DIG
+
+ enum: DECIMAL_DIG
+
+ enum: FLT_DIG
+ enum: DBL_DIG
+ enum: LDBL_DIG
+
+ enum: FLT_MIN_EXP
+ enum: DBL_MIN_EXP
+ enum: LDBL_MIN_EXP
+
+ enum: FLT_MIN_10_EXP
+ enum: DBL_MIN_10_EXP
+ enum: LDBL_MIN_10_EXP
+
+ enum: FLT_MAX_EXP
+ enum: DBL_MAX_EXP
+ enum: LDBL_MAX_EXP
+
+ enum: FLT_MAX_10_EXP
+ enum: DBL_MAX_10_EXP
+ enum: LDBL_MAX_10_EXP
+
+ enum: FLT_MAX
+ enum: DBL_MAX
+ enum: LDBL_MAX
+
+ enum: FLT_EPSILON
+ enum: DBL_EPSILON
+ enum: LDBL_EPSILON
+
+ enum: FLT_MIN
+ enum: DBL_MIN
+ enum: LDBL_MIN
« no previous file with comments | « third_party/cython/src/Cython/Includes/libc/errno.pxd ('k') | third_party/cython/src/Cython/Includes/libc/limits.pxd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698