]> git.ipfire.org Git - thirdparty/Python/cpython.git/shortlog
thirdparty/Python/cpython.git
2003-02-06  Andrew M. KuchlingUse new name for GetoptError, and pass it two arguments
2003-02-06  Guido van RossumSupport all the new stuff supported by the new pickle...
2003-02-06  Andrew M. KuchlingA few naughty external scripts do 'raise getopt.error...
2003-02-06  Andrew M. KuchlingAdd DeprecationWarning when use_statcache argument...
2003-02-06  Guido van RossumRemove a debug print statement.
2003-02-06  Michael W.... Remove another lie.
2003-02-06  Michael W.... Correct lie about METH_NOARGS functions.
2003-02-06  Guido van RossumSupport __reduce__ returning a 4-tuple or 5-tuple.
2003-02-06  Andrew M. KuchlingTypo fixes
2003-02-06  Guido van RossumA test suite for the copy module. This should provide...
2003-02-06  Andrew M. Kuchling[Bug #680494] filecmp.py uses obsolete statcache module.
2003-02-06  Andrew M. KuchlingAdd test suite for filecmp.py, after some discussion...
2003-02-06  Tim PetersSF bug 680864: test_datetime fails for non-unix epoch
2003-02-06  Jeremy HyltonNo need for a continuation line.
2003-02-06  Jeremy HyltonReplace hasattr() + getattr() with single getattr(...
2003-02-06  Guido van RossumClarify that __module__ applies to various type of...
2003-02-06  Jeremy HyltonAdd news item about __module__ attribute on functions.
2003-02-06  Andrew M. KuchlingComment typo fix
2003-02-06  Andrew M. KuchlingMention FutureWarning for large ints
2003-02-06  Andrew M. KuchlingFix description of filterwarnings() parameters (error...
2003-02-06  Neal NorwitzProvide version changed info
2003-02-06  Anthony BaxterUpdated version of [ 558544 ] cmd.py: add instance...
2003-02-05  Jeremy HyltonSmall function call optimization and special build...
2003-02-05  Jack JansenGot rid of macfs and made a bit more OSX-friendly.
2003-02-05  Just van Rossumremoving old junk
2003-02-05  Jack JansenRemoved unused import of macfs.
2003-02-05  Jack JansenI don't think this script serves a useful purpose anymo...
2003-02-05  Guido van RossumFix for SF #668433. I'm not explaining it here; ample...
2003-02-05  Jeremy HyltonRefactor the logic for setting f_builtins.
2003-02-05  Andrew M. Kuchling[Patch #654421 from Matthew Mueller]
2003-02-05  Andrew M. KuchlingMarkup fixes; in particular, the tables are now reasona...
2003-02-05  Tim Petersdis(): Added an optional memo argument, so that multip...
2003-02-05  Tim PetersSF bug 681122: Built-in function dir() causes refcount...
2003-02-05  Tim Peters[680789] Debug with long array takes forever
2003-02-05  Jason TishlerPatch #551977: Regression exceptions for cygwin
2003-02-05  Jack JansenGetting rid of macfs and FSSpecs.
2003-02-05  Jack JansenGot rid of macfs
2003-02-05  Jack JansenAdded "Open File by Name" command which presens a filen...
2003-02-05  Jack JansenCast various floats to ints so we don't get warnings.
2003-02-05  Jason TishlerThis patch reverts the following:
2003-02-05  Jason TishlerThis patch enables Cygwin Python to build _tkinter...
2003-02-05  Jack JansenFixed a few typos, and changed FSCreateResourceFile...
2003-02-05  Jack JansenAdded itertools module.
2003-02-05  Jack JansenUse os.path.realpath() in stead of abspath(), so the...
2003-02-05  Raymond HettingerSF patch #674396: Apply UserDict.DictMixin to expand...
2003-02-05  Tim PetersBuild pickler_choices list in a lazier way.
2003-02-05  Tim PetersMore typo repair.
2003-02-05  Tim PetersTypo repair.
2003-02-04  Tim PeterscPickle: exempt two_tuple from GC -- it's a speed...
2003-02-04  Neil SchemenauerIf a float is passed where a int is expected, issue...
2003-02-04  Tim PeterscPickle now generates proto 2 EXT[124] when appropriate.
2003-02-04  Neal NorwitzRemove forward static reference since it is not required
2003-02-04  Neal NorwitzWhitespace normalization
2003-02-04  Walter DörwaldMake sure filter() never returns tuple, str or unicode
2003-02-04  Marc-André... Fix for [ 543344 ] Interpreter crashes when recoding...
2003-02-04  Fred Drakesupports_unicode_filenames was not in the right location.
2003-02-04  Walter DörwaldUse size_t instead of int for various variables to...
2003-02-04  Tim PetersAdded basic tests of copy_reg's extension registry.
2003-02-04  Walter DörwaldAdd a test that checks that filter() honors the sq_item...
2003-02-04  Walter DörwaldPyUnicode_Resize() doesn't free its argument in case...
2003-02-04  Walter Dörwaldfilterstring() and filterunicode() in Python/bltinmodule.c
2003-02-04  Jack Jansen- Handle the img and MediaFormat modules not being...
2003-02-04  Jack JansenChanged an edit instruction because of a changed parame...
2003-02-04  Fred DrakeUpdate to better reflect the usage of struct_time insta...
2003-02-04  Fred DrakeTwiddle.
2003-02-04  Raymond HettingerAdd refcount test.
2003-02-04  Tim PetersTypo in comment.
2003-02-04  Tim PeterscPickle can load pickles using proto 2 EXT[124] now...
2003-02-04  Guido van RossumRename the extension registry variables to have leading...
2003-02-04  Tim PetersWhitespace normalization.
2003-02-04  Tim PetersTypo repair.
2003-02-04  Tim PetersBrought some module variables into synch with pickle...
2003-02-03  Walter DörwaldFix typo.
2003-02-03  Walter DörwaldAdd a new test script that tests various features of...
2003-02-03  Tim Peterstest_newobj_tuple(), test_newobj_list(): These tests...
2003-02-03  Tim Peterstest_newobj_generic(): Use the global protocols vector...
2003-02-03  Tim PetersAdded a bit to the EXT[124] tests, and refactored them...
2003-02-03  Tim Petersload_counted_long(): Changed a ValueError to an Unpick...
2003-02-03  Tim PetersDo a better job of testing that opcodes aren't generate...
2003-02-03  Walter DörwaldFix typo.
2003-02-03  Guido van Rossum- Thanks to Scott David Daniels, a subtle bug in how...
2003-02-03  Neal NorwitzSF #661437, apply() should get PendingDeprecation
2003-02-03  Walter DörwaldFix typos.
2003-02-03  Walter DörwaldPort test_pow.py to PyUnit. From SF patch #662807
2003-02-03  Guido van Rossum_slotnames(): this is a fairly expensive calculation...
2003-02-03  Andrew M. Kuchling[Bug #676292] BaseHTTPServer incorrectly parses protoco...
2003-02-03  Guido van Rossum_slotnames(): exclude __dict__ and __weakref__; these...
2003-02-03  Guido van RossumSupport keyword argument 'bin', with a pending deprecat...
2003-02-03  Tim PetersProper testing of proto 2 in part requires checking...
2003-02-03  Skip Montanarobraino
2003-02-03  Tim PetersPDATA_PUSH and PDATA_APPEND. documented, and reformatt...
2003-02-03  Andrew M. KuchlingBug #678077: Suggest alternative to os.getlogin()
2003-02-03  Skip Montanarotry to avoid gross incompatibilities with older version...
2003-02-03  Skip Montanarotry to avoid gross incompatibilities with earlier versi...
2003-02-03  Guido van Rossum_PyLong_Sign(): remove an assert that needed a variable...
2003-02-03  Guido van Rossumtest_float_overflow(): make shuge (added last week...
2003-02-03  Andrew M. KuchlingBug #676273: Rewrite paragraph in module docstring
2003-02-03  Fred Draketest_support.requires(): Instead of raising TestSkippe...
2003-02-03  Skip Montanaroadd note about new db2pickle.py and pickle2db.py scripts
2003-02-03  Andrew M. Kuchling[Bug #679251] Use correct constant name
next