]> git.ipfire.org Git - thirdparty/Python/cpython.git/shortlog
thirdparty/Python/cpython.git
2007-05-03  Guido van RossumGet rid of all #ifdef Py_USING_UNICODE (it is always...
2007-05-03  Guido van RossumKill unichr() itself.
2007-05-03  Guido van RossumRename 'unicode' to 'str' in its tp_name field. Rename...
2007-05-02  Guido van RossumRip out all the u"..." literals and calls to unicode().
2007-04-27  Guido van RossumCheckpoint. Manipulated things so that string literals...
2007-04-27  Guido van RossumStart working on the str/unicode unification.
2007-04-27  Guido van RossumMerged revisions 53952-54987 via svnmerge from
2007-04-27  Guido van RossumFix print syntax so this runs using 3.0.
2007-04-26  Fred Drakefix some markup errors
2007-04-23  Nick CoghlanAllow decorators and return annotations to be used...
2007-04-23  Nick CoghlanDon't crash when nonlocal is used at module level ...
2007-04-21  Neal NorwitzAdd a note to this file that it might be out of date...
2007-04-21  Georg BrandlPEP 3114: rename .next() to .__next__() and add next...
2007-04-17  Guido van RossumMake it compile with C89.
2007-04-17  Guido van RossumIf $PYTHONNEWIO is set and nonempty,
2007-04-17  Neal NorwitzRemove functions in string module that are also string...
2007-04-17  Neal NorwitzRemove the SlowParser class because it depended on...
2007-04-17  Neal NorwitzRemove the xmllib module that was obsolete.
2007-04-17  Neal NorwitzRemove old string module
2007-04-17  Neal NorwitzRemove ancient platforms: AIX 3 and Irix 5. (AIX 4...
2007-04-17  Guido van RossumInstead of pickling the whole decoder, use the new...
2007-04-16  Walter DörwaldApply SF patch #1698994: Add getstate() and setstate()
2007-04-16  Guido van RossumCheck in the inevitable change to the version number.
2007-04-15  Nick CoghlanHide list comp variables and support set comprehensions
2007-04-13  Guido van RossumOops, don't test for a name attribute here. That's...
2007-04-13  Guido van RossumSupport name and mode attributes on all file types.
2007-04-13  Guido van Rossumstruct.unpack() allows a bytes string too (if it has...
2007-04-13  Guido van RossumSupport marshal.dump(x, f) where f is not a real file.
2007-04-13  Guido van RossumDisallow u"..." + b"..." and b"..." + u"...".
2007-04-13  Guido van RossumRough and dirty job -- allow concatenation of bytes...
2007-04-12  Guido van RossumMake a few more tests pass with the new I/O library.
2007-04-12  Guido van RossumClean up trailing whitespace.
2007-04-12  Guido van RossumFix most XXX remarks.
2007-04-12  Guido van RossumTest closed, mode attribute; don't test __exit__().
2007-04-12  Guido van RossumMake sure that writing an array instance returns the...
2007-04-12  Guido van RossumTextIO improvement:
2007-04-11  Georg BrandlBug #1697782: remove all remaining code that uses types...
2007-04-11  Guido van RossumMake array().tofile() work with a new I/O object.
2007-04-11  Guido van RossumRe-enable cleanup code.
2007-04-11  Guido van RossumSpeed up next() by disabling snapshot updating then.
2007-04-11  Guido van RossumMore efficient implementation of tell(); _read_chunk...
2007-04-11  Guido van RossumReal pickling for bytes.
2007-04-11  Guido van RossumAn example of action-at-a-distance: fix the problems...
2007-04-11  Guido van RossumCheckpoint so I can continue to work on this at a diffe...
2007-04-10  Guido van Rossumtruncate() returns the new size and position.
2007-04-10  Guido van RossumSkip large file tests on Windowns and OSX.
2007-04-10  Guido van RossumImplement long positioning (Unix only, probably).
2007-04-10  Guido van RossumBufferedIOBase and TextIOBase should derive from IOBase...
2007-04-10  Guido van RossumMore cleanup. Renamed BlockingIO to BlockingIOError.
2007-04-09  Guido van RossumBytes should never equal unicode.
2007-04-09  Guido van RossumFor Make Benefit Glorious Nation of Backwards Compatibi...
2007-04-09  Guido van RossumMake sure that a forked child process exits even if...
2007-04-09  Guido van RossumFix a place where it's pretty clear that a binary open...
2007-04-08  Guido van RossumCleanup.
2007-04-08  Guido van RossumMake it possible to instantiate a _FileIO() with an...
2007-04-07  Guido van RossumSomehow this contained a bogus reference to "exceptions...
2007-04-07  Guido van RossumA class used as an exception should inherit from Exception.
2007-04-07  Guido van RossumAdd some backwards compatibility stuff.
2007-04-06  Guido van RossumCheckpoint.
2007-04-06  Guido van RossumGet rid of duplicate definition of BufferedIOBase.
2007-04-06  Guido van RossumAdded a working Text I/O layer, by Mark Russell.
2007-03-29  Fred Drakemake the markup match that of the trunk to avoid insane...
2007-03-29  Guido van RossumFix refcounting bug reported by Amaury Forgeot d'Arc.
2007-03-28  Collin WinterMake readonly members defined in C throw an AttributeEr...
2007-03-28  Guido van RossumMore fixes related to removal of exception slicing.
2007-03-28  Guido van RossumFix errors in bsddb3 tests due to removal of exception...
2007-03-28  Guido van RossumMoving xreload to the sandbox for now.
2007-03-27  Guido van RossumBy default, != returns the opposite of ==, unless the...
2007-03-27  Guido van RossumLooks like this file wasn't checked in.
2007-03-27  Collin WinterFix two bugs related to the remove of exception subscri...
2007-03-23  Collin WinterAddress some XXXs from Neal Norwitz.
2007-03-21  Brett CannonWhen removing indexing/slicing on exceptions some place...
2007-03-21  Guido van RossumFix refleak in compiler.
2007-03-21  Collin WinterRemove isCallable() and sequenceIncludes() from the...
2007-03-21  Neal NorwitzLittle fixes:
2007-03-21  Collin WinterPatch #1680961: remove sys.exitfunc and replace it...
2007-03-21  Collin WinterUse the local python binary to build the docs, not...
2007-03-21  Collin WinterRun 2to3 over Doc/tools/.
2007-03-19  Guido van RossumMake test_socket_ssl.py pass by fixing some code that was
2007-03-19  Guido van RossumUse input() now that it is available.
2007-03-19  Georg Brandl"from ... import x" should not be a syntax error.....
2007-03-19  Guido van RossumFix the compiler package w.r.t. the new metaclass syntax.
2007-03-18  Georg BrandlNEWS item for PEP 3115.
2007-03-18  Georg BrandlRefactor astgen.py with 2to3.
2007-03-18  Georg BrandlMake ELLIPSIS a separate token. This makes it a syntax...
2007-03-18  Georg BrandlRemove the deprecated and useless "pend" argument from
2007-03-18  Guido van RossumUpdate the silly version number.
2007-03-18  Guido van RossumImplement PEP 3115 -- new metaclass syntax and semantics.
2007-03-18  Guido van RossumBug 1679498: remove unused instance variables _readable...
2007-03-18  Guido van RossumBug 1679498: unset variable 'bs'.
2007-03-15  Guido van RossumAdd some XXX comments and fix BufferedReader signature.
2007-03-15  Guido van RossumAdd Mike Verdone (co-author of io.py and PEP 3116).
2007-03-12  Georg BrandlCheck the keys of the locals dict -- they need not...
2007-03-10  Georg BrandlPatch #1591665: implement the __dir__() special functio...
2007-03-08  Collin WinterAdd a missing forward declaration for PyFileIO_Type...
2007-03-08  Collin WinterMove test_unittest, test_doctest and test_doctest2...
2007-03-08  Guido van RossumFix another unittest that broke due to dict views ...
2007-03-08  Guido van RossumFix embarrassing syntax mix.
2007-03-08  Guido van RossumCheck in Daniel Stutzbach's _fileio.c and test_fileio.py
2007-03-07  Guido van RossumDelete TESTFN after the test.
next