On 12/10/06, Calvin Spealman <[EMAIL PROTECTED]> wrote:
Has anyone considered consolidating the module pairs that have both a C and Python implementation? For example, pickle and cPickle and StingIO and cStringIO. It seems like keeping both around might be counter productive. It leads to more code for bugs, issues when there are accidental differences between the two, leading to misdiagnosed errors or hard to find bugs when people test with pickle and run with cPickle. Just seems like all around, if there was found to be a reason to make a module in C over its original Python version, the original doesn't need to stick around.
This has been argued about before. It has been suggested we actually ditch the C version since we only want to maintain one version and the Python version can be used by alternative Python implementations. This probably needs to be covered in a PEP that covers a stdlib reorg/renaming. -Brett
_______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
