[Python-checkins] r71317 - python/branches/py3k-short-float-repr/Python/dtoa.c

mark.dickinson python-checkins at python.org
Mon Apr 6 20:42:54 CEST 2009


Author: mark.dickinson
Date: Mon Apr  6 20:42:54 2009
New Revision: 71317

Log:
Remove bogus assert.


Modified:
   python/branches/py3k-short-float-repr/Python/dtoa.c

Modified: python/branches/py3k-short-float-repr/Python/dtoa.c
==============================================================================
--- python/branches/py3k-short-float-repr/Python/dtoa.c	(original)
+++ python/branches/py3k-short-float-repr/Python/dtoa.c	Mon Apr  6 20:42:54 2009
@@ -455,7 +455,6 @@
 Bfree
 	(Bigint *v)
 {
-	assert(v != NULL);
 	if (v) {
 		if (v->k > Kmax)
 			FREE((void*)v);


More information about the Python-checkins mailing list