This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nnorwitz
Recipients
Date 2006-02-21.07:49:41
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=33168

In test_print() how about os.unlink(tfn)?  Why do you play
games with stdout, can't you do print >>f, ... ?  (If you
don't need stdout, it looks like you don't need sys.)

In defdict_on_missing() why do you check if the factory is
None?  It's the only place None is checked for, everywhere
else, it's just NULL.

defdict_repr should be static.

Type for this line in defdict_init() should be Py_ssize_t,
not int:
int n = PyTuple_GET_SIZE(args);
History
Date User Action Args
2007-08-23 15:45:48adminlinkissue1433928 messages
2007-08-23 15:45:48admincreate