[Python-checkins] r78264 - python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/c_tests/runtest.c

stefan.krah python-checkins at python.org
Sat Feb 20 18:41:32 CET 2010


Author: stefan.krah
Date: Sat Feb 20 18:41:32 2010
New Revision: 78264

Log:
Consistency in function naming.

Modified:
   python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/c_tests/runtest.c

Modified: python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/c_tests/runtest.c
==============================================================================
--- python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/c_tests/runtest.c	(original)
+++ python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/c_tests/runtest.c	Sat Feb 20 18:41:32 2010
@@ -2912,13 +2912,13 @@
 		/* Binary function with binary result */
 		else if (eqtoken(token[1], "divmod")) {
 			_Binres_Binop_Ctx(token, mpd_qdivmod, &ctx);
-			_Binres_Binop_Ctx(token, mpd_qtest_newton_divmod, &ctx);
+			_Binres_Binop_Ctx(token, mpd_qtest_newtondivmod, &ctx);
 		}
 
 		/* Binary function with binary result, equal operands */
 		else if (eqtoken(token[1], "divmod_eq")) {
 			_Binres_EqualBinop_Ctx(token, mpd_qdivmod, &ctx);
-			_Binres_EqualBinop_Ctx(token, mpd_qtest_newton_divmod, &ctx);
+			_Binres_EqualBinop_Ctx(token, mpd_qtest_newtondivmod, &ctx);
 		}
 
 


More information about the Python-checkins mailing list