[Python-checkins] r61381 - python/branches/trunk-math/Modules/cmathmodule.c

mark.dickinson python-checkins at python.org
Fri Mar 14 15:00:29 CET 2008


Author: mark.dickinson
Date: Fri Mar 14 15:00:29 2008
New Revision: 61381

Modified:
   python/branches/trunk-math/Modules/cmathmodule.c
Log:
Fix accidentally deleted comma


Modified: python/branches/trunk-math/Modules/cmathmodule.c
==============================================================================
--- python/branches/trunk-math/Modules/cmathmodule.c	(original)
+++ python/branches/trunk-math/Modules/cmathmodule.c	Fri Mar 14 15:00:29 2008
@@ -410,7 +410,7 @@
   {{N,0.}, {U,U},{1.,0.},  {1.,-0.}, {U,U},{N,0.}, {N,0.}},
   {{N,0.}, {U,U},{1.,-0.}, {1.,0.},  {U,U},{N,0.}, {N,0.}},
   {{N,N},  {U,U},{U,U},    {U,U},    {U,U},{N,N},  {N,N}},
-  {{INF,N} {U,U},{INF,-0.},{INF,0.}, {U,U},{INF,N},{INF,N}},
+  {{INF,N},{U,U},{INF,-0.},{INF,0.}, {U,U},{INF,N},{INF,N}},
   {{N,N},  {N,N},{N,0.},   {N,0.},   {N,N},{N,N},  {N,N}}
 };
 


More information about the Python-checkins mailing list