| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix issue 3395, update _debugInfo to be _debug_info | Jesse Noller | 2008-07-17 | 1 | -1/+1 |
| | | |||||
| * | Backed out r65069, pending fixing it in Windows. | Eric Smith | 2008-07-17 | 2 | -22/+2 |
| | | |||||
| * | catch socket.error errors in badCertTest | Bill Janssen | 2008-07-17 | 1 | -0/+3 |
| | | |||||
| * | Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. | Eric Smith | 2008-07-17 | 2 | -2/+22 |
| | | |||||
| * | try to fix test_threading on the Windows bot | Benjamin Peterson | 2008-07-17 | 1 | -1/+2 |
| | | |||||
| * | Byte items *can* be chars in 2.6. | Georg Brandl | 2008-07-16 | 1 | -1/+2 |
| | | |||||
| * | #3156: fix consistency in what type bytearray methods accept as items. | Georg Brandl | 2008-07-16 | 1 | -16/+25 |
| | | | | | Also rename confusing "item" parameters to "index". | ||||
| * | #3305: self->stream can be NULL. | Georg Brandl | 2008-07-16 | 1 | -0/+9 |
| | | |||||
| * | Apply patch for 874900: threading module can deadlock after fork | Jesse Noller | 2008-07-16 | 1 | -1/+79 |
| | | |||||
| * | lib2to3 isn't broken anymore, so we can run the test | Benjamin Peterson | 2008-07-16 | 1 | -2/+1 |
| | | |||||
| * | Issue #3360: Fix incorrect parsing of "020000000000.0". | Mark Dickinson | 2008-07-16 | 1 | -0/+4 |
| | | |||||
| * | disable lib2to3 in the trunk. It's broken just for 2.6 | Benjamin Peterson | 2008-07-16 | 1 | -1/+2 |
| | | |||||
| * | Complete issue 3083: add alternate (#) formatting to bin, oct, hex in ↵ | Eric Smith | 2008-07-16 | 1 | -1/+12 |
| | | | | | str.format(). | ||||
| * | Fix float.from_hex tests. It appears that Linux/ia64 doesn't like | Mark Dickinson | 2008-07-15 | 1 | -4/+4 |
| | | | | | | computing 2.0**-1074 accurately. Using ldexp(1.0, -1074) should be safer. | ||||
| * | Issue #3008: add instance method float.hex and class method float.fromhex | Mark Dickinson | 2008-07-15 | 1 | -1/+386 |
| | | | | | to convert floats to and from hexadecimal strings respectively. | ||||
| * | Issue 2235: __hash__ is once again inherited by default, but inheritance can ↵ | Nick Coghlan | 2008-07-15 | 4 | -66/+89 |
| | | | | | be blocked explicitly so that collections.Hashable remains meaningful | ||||
| * | Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for ↵ | Eric Smith | 2008-07-15 | 2 | -0/+45 |
| | | | | | bin, oct, hex. There's still one failing case, and I need to finish the docs. I hope to finish those today. | ||||
| * | fix test_py3kwarns | Benjamin Peterson | 2008-07-14 | 1 | -18/+19 |
| | | | | | The fact that this was failing and went unnoticed so long seems like a good argument for being able to enable and disble py3kwarnings through Python. | ||||
| * | Fixed test failure on Win64 machines. | Robert Schuppenies | 2008-07-14 | 1 | -8/+5 |
| | | |||||
| * | remove sys.version_info check for 3.0 | Benjamin Peterson | 2008-07-13 | 1 | -5/+1 |
| | | |||||
| * | remove bytes alias | Benjamin Peterson | 2008-07-13 | 1 | -7/+0 |
| | | |||||
| * | Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError ↵ | Nick Coghlan | 2008-07-13 | 1 | -3/+33 |
| | | | | | when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) | ||||
| * | Make test.test_support.catch_warnings more robust as discussed on ↵ | Nick Coghlan | 2008-07-13 | 4 | -63/+94 |
| | | | | | python-dev. Also add explicit tests for itto test_warnings. | ||||
| * | dummy_thread.acquire() would return None if no waitflag argument was given. It | Brett Cannon | 2008-07-13 | 1 | -0/+1 |
| | | | | | | | | should have returned True. Fixes issue #3339. Thanks, Henk Punt for the report and Andrii v. Mishkovskiyi for attempting a patch. | ||||
| * | Fixed test for asyncore. | Josiah Carlson | 2008-07-11 | 1 | -3/+3 |
| | | |||||
| * | #3342: In tracebacks, printed source lines were not indented since r62555. | Amaury Forgeot d'Arc | 2008-07-11 | 1 | -1/+1 |
| | | | | | #3343: Py_DisplaySourceLine should be a private function. Rename it to _Py_DisplaySourceLine. | ||||
| * | Added garbage collector overhead and optional default return value to | Robert Schuppenies | 2008-07-10 | 1 | -0/+23 |
| | | | | | sys.getsizeof. | ||||
| * | Added additional __sizeof__ implementations and addressed comments made in | Robert Schuppenies | 2008-07-10 | 1 | -18/+47 |
| | | | | | Issue3122. | ||||
| * | Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. | Raymond Hettinger | 2008-07-10 | 1 | -8/+4 |
| | | |||||
| * | Issue 3301: Bisect functions behaved badly when lo was negative. | Raymond Hettinger | 2008-07-10 | 1 | -0/+8 |
| | | |||||
| * | Fixed Issue3122 and extended sys.getsizeof tests for built-in types. | Robert Schuppenies | 2008-07-10 | 1 | -67/+172 |
| | | |||||
| * | Issue 3287: Raise correct exception for float inputs. | Raymond Hettinger | 2008-07-10 | 1 | -4/+4 |
| | | |||||
| * | Issue 2517: Allow unicode messages in Exceptions again by correctly ↵ | Nick Coghlan | 2008-07-08 | 1 | -0/+1 |
| | | | | | bypassing the instance dictionary when looking up __unicode__ on new-style classes | ||||
| * | Issue 3306. Better control for a lenght in findmax() function. | Facundo Batista | 2008-07-07 | 1 | -0/+4 |
| | | |||||
| * | Fixed bugs 760475, 953599, and 1519. | Josiah Carlson | 2008-07-07 | 1 | -2/+8 |
| | | |||||
| * | - Issue #3309: Fix bz2.BZFile itererator to release its internal lock | Gregory P. Smith | 2008-07-07 | 1 | -0/+11 |
| | | | | | | properly when raising an exception due to the bz2file being closed. Prevents a deadlock. | ||||
| * | remove test_compact_freelists from test_sys | Benjamin Peterson | 2008-07-06 | 1 | -19/+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 |
| | | |||||
| * | Issue 3188: accept float('infinity') as well as float('inf'). This | Mark Dickinson | 2008-07-05 | 1 | -1/+17 |
| | | | | | | | 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 | 1 | -0/+76 |
| | | | | | This is a new feature, but Barry authorized adding it in the beta period. | ||||
| * | Patch #1622: Correct interpretation of various ZIP header fields. | Martin v. Löwis | 2008-07-03 | 2 | -1/+73 |
| | | | | | | | | | | 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. | ||||
| * | 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 |
| | | |||||
| * | 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 | 1 | -2/+0 |
| | | |||||
| * | Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure | Mark Dickinson | 2008-07-02 | 1 | -0/+3 |
| | | | | | | | | | that the behaviour of Decimal doesn't change if/when re.UNICODE becomes assumed in Python 3.0. Also add a check that alternative Unicode digits (e.g. u'\N{FULLWIDTH DIGIT ONE}') are *not* accepted in a numeric string. | ||||
| * | Handle urllib's renaming for Python 3.0: | Brett Cannon | 2008-07-02 | 2 | -13/+21 |
| | | | | | | | | | * Deprecate urllib.urlopen() in favor of urllib2.urlopen() for 3.0. * Update docs to mention split/rename of the module and deprecation of urlopen(). Changes to lib2to3 are in a separate commit. Work is for issue #2885. | ||||
