summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-1185/+1
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-152-153/+50
* struct.unpack() allows a bytes string too (if it has the right size).Guido van Rossum2007-04-131-2/+6
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-121-12/+9
* Make array().tofile() work with a new I/O object.Guido van Rossum2007-04-111-5/+29
* truncate() returns the new size and position.Guido van Rossum2007-04-101-4/+10
* Implement long positioning (Unix only, probably).Guido van Rossum2007-04-101-130/+146
* Make it possible to instantiate a _FileIO() with an integer file descriptorGuido van Rossum2007-04-081-18/+50
* Somehow this contained a bogus reference to "exceptions" which causedGuido van Rossum2007-04-071-2/+0
* Address some XXXs from Neal Norwitz.Collin Winter2007-03-231-8/+19
* Remove isCallable() and sequenceIncludes() from the operator module.Collin Winter2007-03-211-6/+0
* Little fixes:Neal Norwitz2007-03-211-8/+15
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-212-0/+218
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-0/+4
* Add a missing forward declaration for PyFileIO_Type. The _fileio module now c...Collin Winter2007-03-081-0/+2
* Check in Daniel Stutzbach's _fileio.c and test_fileio.pyGuido van Rossum2007-03-081-0/+713
* SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners.Neal Norwitz2007-02-272-7/+7
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-236-3/+338
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-112-5/+16
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-092-29/+2
* Essential changes for print function changes.Guido van Rossum2007-02-091-54/+2
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-052-9/+22
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-016-23/+77
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-1520-486/+521
* Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact.Guido van Rossum2007-01-151-1/+1
* Merged revisions 53434 via svnmerge fromGuido van Rossum2007-01-151-4/+14
* Fix cPickle breakage due to last-minute change to the name of the 'long' typeGuido van Rossum2007-01-141-1/+1
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-1415-80/+186
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-096-7/+43
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-44/+91
* Cruft removal:Neal Norwitz2006-12-284-7/+7
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-1344-295/+930
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-282-10/+10
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-273-9/+35
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-0/+5
* Patch #1550800: make exec a function.Georg Brandl2006-09-062-35/+4
* Get parsermodule working again after adding set literalsNeal Norwitz2006-08-291-4/+4
* Get rid of some more cases of backquotes. parsermodule.c doesn't compileNeal Norwitz2006-08-291-5/+0
* Part of SF patch #1513870 (the still relevant part) -- add reduce() toGuido van Rossum2006-08-261-0/+76
* Remove more '<>' usage.Brett Cannon2006-08-251-10/+10
* Remove more '<>' usage.Brett Cannon2006-08-251-1/+1
* Fix the datetime comparison conundrum.Guido van Rossum2006-08-241-86/+47
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-0/+2
* Fix test_gc failure by fixing the bug test_gc found: __del__ methods were noThomas Wouters2006-08-211-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-2128-299/+431
* And the gdbm module's test now passes again.Guido van Rossum2006-08-191-13/+33
* Fix this right for has_key(). This required adding tp_as_sequence.Guido van Rossum2006-08-191-13/+34
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-183-11/+11
* Fixed cPickle, by restoring some of the deleted code.Guido van Rossum2006-08-171-3/+40