summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-106-35/+105
* Wording changesAndrew M. Kuchling2008-07-101-6/+6
* Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments.Raymond Hettinger2008-07-103-10/+12
* Issue 3301: Bisect functions behaved badly when lo was negative.Raymond Hettinger2008-07-104-0/+27
* Fixed Issue3122 and extended sys.getsizeof tests for built-in types.Robert Schuppenies2008-07-102-78/+182
* Use operator.index() instead of n.__index__().Raymond Hettinger2008-07-101-5/+2
* Issue 3287: Raise correct exception for float inputs.Raymond Hettinger2008-07-102-7/+9
* Add missing NEWS and ACK entries for r64791Nick Coghlan2008-07-082-0/+5
* Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing...Nick Coghlan2008-07-083-9/+57
* Add missing ABCs to list.Georg Brandl2008-07-081-36/+44
* Issue 3306. Better control for a lenght in findmax() function.Facundo Batista2008-07-072-1/+5
* Fix example to match textAndrew M. Kuchling2008-07-071-1/+1
* Correct grammar.Skip Montanaro2008-07-071-1/+1
* - Issue #3094: httplib.HTTPSConnection Host: headers no longer include theGregory P. Smith2008-07-072-1/+5
* Add commented out #_sha256 and #_sha512 lines per issue 3183.Gregory P. Smith2008-07-071-2/+4
* Fixed bugs 760475, 953599, and 1519.Josiah Carlson2008-07-073-6/+14
* - Issue #3309: Fix bz2.BZFile itererator to release its internal lockGregory P. Smith2008-07-073-0/+16
* Issue839496: SimpleHTTPServer should open all files in binary mode.Amaury Forgeot d'Arc2008-07-062-5/+10
* Add two items; rewrap paragraphAndrew M. Kuchling2008-07-061-3/+27
* Wording fixAndrew M. Kuchling2008-07-061-1/+1
* Fix opensearch template.Georg Brandl2008-07-061-14/+4
* fix issue3304 - remove an incorrect PyMem_Free in fileio_initGregory P. Smith2008-07-061-1/+0
* remove test_compact_freelists from test_sysBenjamin Peterson2008-07-061-19/+0
* - Issue #2113: Fix error in subprocess.Popen if the select system call isGregory P. Smith2008-07-062-1/+9
* - Issue #2862: Make int and float freelist management consistent with otherGregory P. Smith2008-07-0611-107/+62
* Issue #3239. Differentiate the ascii call from the curses one andFacundo Batista2008-07-051-18/+19
* Issue 3289. Removed two lines that ended doing nothing.Facundo Batista2008-07-051-2/+0
* Keep below 80 chars.Georg Brandl2008-07-051-2/+2
* make regrtest aware of the lib2to3 resourceBenjamin Peterson2008-07-051-1/+3
* Disable lib2to3 by default, unless run explicitly.Martin v. Löwis2008-07-051-1/+5
* Merged revisions 64285-64735 via svnmerge fromMartin v. Löwis2008-07-052-4/+6
* Minor rewrite of cmath_log to work around a Sun compiler bug. See issueMark Dickinson2008-07-051-2/+4
* Issue 3188: accept float('infinity') as well as float('inf'). ThisMark Dickinson2008-07-052-1/+20
* #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.Georg Brandl2008-07-054-16/+177
* Fix tabs.Georg Brandl2008-07-051-12/+12
* Update comment on prediction macros.Raymond Hettinger2008-07-051-11/+13
* Give the pickle special methods a signature.Georg Brandl2008-07-041-118/+117
* let the term be linkedBenjamin Peterson2008-07-031-2/+2
* lowercase glossary termBenjamin Peterson2008-07-031-1/+1
* Patch #1622: Correct interpretation of various ZIP header fields.Martin v. Löwis2008-07-035-101/+292
* Tweak wordingAndrew M. Kuchling2008-07-031-3/+3
* Try a blind fix to nismodule which fails on the solaris10 3.0 buildbot:Amaury Forgeot d'Arc2008-07-021-5/+8
* Revert r64673 and instead just change the file encoding.Brett Cannon2008-07-021-3/+3
* FIx some Latin-1 characters to be UTF-8 as the file encoding specifies.Brett Cannon2008-07-021-2/+2
* Add #!/usr/bin/env python for benJesse Noller2008-07-021-0/+2
* Issue #449227: Now with the rlcompleter module, callable objects areFacundo Batista2008-07-023-9/+20
* Reenable the manager tests with Amaury's threading fixJesse Noller2008-07-021-17/+13
* Issue 3190: pydoc now hides module __package__ attributesNick Coghlan2008-07-023-4/+6
* Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sureMark Dickinson2008-07-022-10/+13
* Handle urllib's renaming for Python 3.0:Brett Cannon2008-07-025-14/+51