Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Suppress -3 warnings in unittest.py | Raymond Hettinger | 2008-07-10 | 1 | -5/+12 |
| | |||||
* | Clear the -3 warnings in optparse.py | Raymond Hettinger | 2008-07-10 | 1 | -15/+9 |
| | |||||
* | Added additional __sizeof__ implementations and addressed comments made in | Robert Schuppenies | 2008-07-10 | 6 | -35/+105 |
| | | | | Issue3122. | ||||
* | Wording changes | Andrew M. Kuchling | 2008-07-10 | 1 | -6/+6 |
| | |||||
* | Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. | Raymond Hettinger | 2008-07-10 | 3 | -10/+12 |
| | |||||
* | Issue 3301: Bisect functions behaved badly when lo was negative. | Raymond Hettinger | 2008-07-10 | 4 | -0/+27 |
| | |||||
* | Fixed Issue3122 and extended sys.getsizeof tests for built-in types. | Robert Schuppenies | 2008-07-10 | 2 | -78/+182 |
| | |||||
* | Use operator.index() instead of n.__index__(). | Raymond Hettinger | 2008-07-10 | 1 | -5/+2 |
| | |||||
* | Issue 3287: Raise correct exception for float inputs. | Raymond Hettinger | 2008-07-10 | 2 | -7/+9 |
| | |||||
* | Add missing NEWS and ACK entries for r64791 | Nick Coghlan | 2008-07-08 | 2 | -0/+5 |
| | |||||
* | Issue 2517: Allow unicode messages in Exceptions again by correctly ↵ | Nick Coghlan | 2008-07-08 | 3 | -9/+57 |
| | | | | bypassing the instance dictionary when looking up __unicode__ on new-style classes | ||||
* | Add missing ABCs to list. | Georg Brandl | 2008-07-08 | 1 | -36/+44 |
| | |||||
* | Issue 3306. Better control for a lenght in findmax() function. | Facundo Batista | 2008-07-07 | 2 | -1/+5 |
| | |||||
* | Fix example to match text | Andrew M. Kuchling | 2008-07-07 | 1 | -1/+1 |
| | |||||
* | Correct grammar. | Skip Montanaro | 2008-07-07 | 1 | -1/+1 |
| | |||||
* | - Issue #3094: httplib.HTTPSConnection Host: headers no longer include the | Gregory P. Smith | 2008-07-07 | 2 | -1/+5 |
| | | | | | redundant ":443" port number designation when the connection is using the default https port (443). | ||||
* | Add commented out #_sha256 and #_sha512 lines per issue 3183. | Gregory P. Smith | 2008-07-07 | 1 | -2/+4 |
| | |||||
* | Fixed bugs 760475, 953599, and 1519. | Josiah Carlson | 2008-07-07 | 3 | -6/+14 |
| | |||||
* | - Issue #3309: Fix bz2.BZFile itererator to release its internal lock | Gregory P. Smith | 2008-07-07 | 3 | -0/+16 |
| | | | | | properly when raising an exception due to the bz2file being closed. Prevents a deadlock. | ||||
* | Issue839496: SimpleHTTPServer should open all files in binary mode. | Amaury Forgeot d'Arc | 2008-07-06 | 2 | -5/+10 |
| | | | | | | | | Forward-port of 38255 (2005/01/15!) This was already fixed in 2.4, but never merged into trunk... py3k is already right, thanks to the bytes/str distinction! Should be backported to 2.5. | ||||
* | Add two items; rewrap paragraph | Andrew M. Kuchling | 2008-07-06 | 1 | -3/+27 |
| | |||||
* | Wording fix | Andrew M. Kuchling | 2008-07-06 | 1 | -1/+1 |
| | |||||
* | Fix opensearch template. | Georg Brandl | 2008-07-06 | 1 | -14/+4 |
| | |||||
* | fix issue3304 - remove an incorrect PyMem_Free in fileio_init | Gregory P. Smith | 2008-07-06 | 1 | -1/+0 |
| | |||||
* | remove test_compact_freelists from test_sys | Benjamin Peterson | 2008-07-06 | 1 | -19/+0 |
| | |||||
* | - Issue #2113: Fix error in subprocess.Popen if the select system call is | Gregory P. Smith | 2008-07-06 | 2 | -1/+9 |
| | | | | interrupted by a signal. | ||||
* | - Issue #2862: Make int and float freelist management consistent with other | Gregory P. Smith | 2008-07-06 | 11 | -107/+62 |
| | | | | | freelists. Changes their CompactFreeList apis into ClearFreeList apis and calls them via gc.collect(). | ||||
* | Issue #3239. Differentiate the ascii call from the curses one and | Facundo Batista | 2008-07-05 | 1 | -18/+19 |
| | | | | the builtin one. | ||||
* | Issue 3289. Removed two lines that ended doing nothing. | Facundo Batista | 2008-07-05 | 1 | -2/+0 |
| | |||||
* | Keep below 80 chars. | Georg Brandl | 2008-07-05 | 1 | -2/+2 |
| | |||||
* | make regrtest aware of the lib2to3 resource | Benjamin Peterson | 2008-07-05 | 1 | -1/+3 |
| | |||||
* | Disable lib2to3 by default, unless run explicitly. | Martin v. Löwis | 2008-07-05 | 1 | -1/+5 |
| | |||||
* | Merged revisions 64285-64735 via svnmerge from | Martin v. Löwis | 2008-07-05 | 2 | -4/+6 |
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r64493 | benjamin.peterson | 2008-06-24 04:14:14 +0200 (Di, 24 Jun 2008) | 1 line add a fix_import mapping for cPickle -> pickle ........ r64651 | brett.cannon | 2008-07-02 04:00:11 +0200 (Mi, 02 Jul 2008) | 3 lines Update fix_imports for urllib. Had to change the fixer itself to handle modules that are split across several renames in 3.0. ........ r64669 | brett.cannon | 2008-07-02 21:43:48 +0200 (Mi, 02 Jul 2008) | 4 lines Backing out last change until fix_imports is working again. Also re-enable the testing for fix_imports; if it is deemed that it takes too long to run then a random sample should be taken and used to test it. ........ | ||||
* | Minor rewrite of cmath_log to work around a Sun compiler bug. See issue | Mark Dickinson | 2008-07-05 | 1 | -2/+4 |
| | | | | #3168. | ||||
* | Issue 3188: accept float('infinity') as well as float('inf'). This | Mark Dickinson | 2008-07-05 | 2 | -1/+20 |
| | | | | | | makes the float constructor behave in the same way as specified by various other language standards, including C99, IEEE 754r, and the IBM Decimal standard. | ||||
* | #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. | Georg Brandl | 2008-07-05 | 4 | -16/+177 |
| | | | | This is a new feature, but Barry authorized adding it in the beta period. | ||||
* | Fix tabs. | Georg Brandl | 2008-07-05 | 1 | -12/+12 |
| | |||||
* | Update comment on prediction macros. | Raymond Hettinger | 2008-07-05 | 1 | -11/+13 |
| | |||||
* | Give the pickle special methods a signature. | Georg Brandl | 2008-07-04 | 1 | -118/+117 |
| | |||||
* | let the term be linked | Benjamin Peterson | 2008-07-03 | 1 | -2/+2 |
| | |||||
* | lowercase glossary term | Benjamin Peterson | 2008-07-03 | 1 | -1/+1 |
| | |||||
* | Patch #1622: Correct interpretation of various ZIP header fields. | Martin v. Löwis | 2008-07-03 | 5 | -101/+292 |
| | | | | | | | | | Also fixes - Issue #1526: Allow more than 64k files to be added to Zip64 file. - Issue #1746: Correct handling of zipfile archive comments (previously archives with comments over 4k were flagged as invalid). Allow writing Zip files with archives by setting the 'comment' attribute of a ZipFile. | ||||
* | Tweak wording | Andrew M. Kuchling | 2008-07-03 | 1 | -3/+3 |
| | |||||
* | Try a blind fix to nismodule which fails on the solaris10 3.0 buildbot: | Amaury Forgeot d'Arc | 2008-07-02 | 1 | -5/+8 |
| | | | | the GIL must be re-acquired in the callback function | ||||
* | Revert r64673 and instead just change the file encoding. | Brett Cannon | 2008-07-02 | 1 | -3/+3 |
| | |||||
* | FIx some Latin-1 characters to be UTF-8 as the file encoding specifies. | Brett Cannon | 2008-07-02 | 1 | -2/+2 |
| | | | | Closes issue #3261. THankjs Leo Soto for the bug report. | ||||
* | Add #!/usr/bin/env python for ben | Jesse Noller | 2008-07-02 | 1 | -0/+2 |
| | |||||
* | Issue #449227: Now with the rlcompleter module, callable objects are | Facundo Batista | 2008-07-02 | 3 | -9/+20 |
| | | | | added a '(' when completed. | ||||
* | Reenable the manager tests with Amaury's threading fix | Jesse Noller | 2008-07-02 | 1 | -17/+13 |
| | |||||
* | Issue 3190: pydoc now hides module __package__ attributes | Nick Coghlan | 2008-07-02 | 3 | -4/+6 |
| |