Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restore the svn property changes in r76754 | Mark Dickinson | 2009-12-11 | 0 | -0/+0 |
| | |||||
* | Issue #7470: logging: fix bug in Unicode encoding fallback. | Vinay Sajip | 2009-12-11 | 0 | -0/+0 |
| | |||||
* | Issue #7403: logging: Fixed possible race condition in lock creation. | Vinay Sajip | 2009-11-27 | 2 | -4/+6 |
| | |||||
* | #6990: clear threading.local's key only after its thread state is removed: | Philip Jenvey | 2009-09-29 | 3 | -2/+47 |
| | | | | | | fixes local subclasses leaving old state around after a ref cycle GC which could be recycled by new locals (backported from r75123) | ||||
* | Avoid EOFError being passed to the caller (restoring the | Lars Gustäbel | 2009-03-22 | 1 | -1/+4 |
| | | | | old behavior). | ||||
* | Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop | Lars Gustäbel | 2009-03-22 | 3 | -6/+42 |
| | | | | | | | | forever on incomplete input. That caused tarfile.open() to hang when used with mode 'r' or 'r:bz2' and a fileobj argument that contained no data or partial bzip2 compressed data. (backported from r70523) | ||||
* | News for issue 5389 fix. | Guido van Rossum | 2009-03-05 | 1 | -0/+3 |
| | |||||
* | Avoid potential for undefined variable 'startinpos' in PyUnicode_DecodeUTF7(). | Guido van Rossum | 2009-03-05 | 1 | -2/+3 |
| | | | | See issue #5389. | ||||
* | Tagging for release of Python 2.5.4 | Martin v. Löwis | 2008-12-23 | 1 | -0/+1 |
| | |||||
* | Prepare for 2.5.4.v2.5.4 | Martin v. Löwis | 2008-12-23 | 7 | -6/+12 |
| | |||||
* | Issue #4689: Fix typo. | Martin v. Löwis | 2008-12-23 | 1 | -1/+1 |
| | |||||
* | Revert patch for #1706039, as it can crash the interpreter. | Martin v. Löwis | 2008-12-23 | 3 | -67/+19 |
| | |||||
* | Backport of r67908: | Martin v. Löwis | 2008-12-23 | 2 | -0/+8 |
| | | | | | Added test case to ensure attempts to read from a file opened for writing fail. | ||||
* | Post 2.5.3. | Martin v. Löwis | 2008-12-20 | 2 | -3/+9 |
| | |||||
* | Tagging for release of Python 2.5.3 | Martin v. Löwis | 2008-12-19 | 1 | -0/+1 |
| | |||||
* | Prepare for 2.5.3.v2.5.3 | Martin v. Löwis | 2008-12-19 | 6 | -8/+13 |
| | |||||
* | Build against system Tcl framework. | Martin v. Löwis | 2008-12-19 | 2 | -7/+1 |
| | |||||
* | In the OSX installer, update SQLite to 3.6.7, and change bsddb URL. | Martin v. Löwis | 2008-12-17 | 2 | -4/+9 |
| | |||||
* | Add 2.5.3 final section. | Martin v. Löwis | 2008-12-13 | 1 | -0/+6 |
| | |||||
* | Tagging for release of Python 2.5.3c1 | Martin v. Löwis | 2008-12-13 | 1 | -0/+1 |
| | |||||
* | Prepare for 2.5.3c1.v2.5.3c1 | Martin v. Löwis | 2008-12-13 | 6 | -10/+10 |
| | |||||
* | Add 2.5.3. | Martin v. Löwis | 2008-12-13 | 1 | -0/+2 |
| | |||||
* | Issue #1706039: Support continued reading from a file even after | Martin v. Löwis | 2008-12-13 | 3 | -17/+70 |
| | | | | EOF was hit. | ||||
* | Issue #1040026: Fix os.times result on systems where HZ is incorrect. | Martin v. Löwis | 2008-12-13 | 2 | -9/+18 |
| | |||||
* | Issue #3767: Convert Tk object to string in tkColorChooser. | Martin v. Löwis | 2008-12-13 | 2 | -5/+9 |
| | |||||
* | Backport of r59654. | Martin v. Löwis | 2008-12-13 | 2 | -1/+3 |
| | | | | Issue #4342: Always convert Text.index result to string. | ||||
* | Backport of r64212 | Martin v. Löwis | 2008-12-13 | 5 | -0/+39 |
| | | | | Issue #1683: prevent forking from interfering in threading storage. | ||||
* | Issue 3248: Allow placing ScrolledText in a PanedWindow. | Martin v. Löwis | 2008-12-13 | 2 | -0/+5 |
| | |||||
* | Backport of r66703: | Martin v. Löwis | 2008-12-13 | 2 | -0/+9 |
| | | | | | Issue #3863: Disabled a unit test of fork being called from a thread when running on platforms known to exhibit OS bugs when attempting that. | ||||
* | Issue #4228: Pack negative values the same way as 2.4 | Martin v. Löwis | 2008-12-13 | 3 | -6/+21 |
| | | | | in struct's L format. | ||||
* | Issue #4368: Don't define _XOPEN_SOURCE on FreeBSD 4.*. | Martin v. Löwis | 2008-12-13 | 3 | -20/+14 |
| | |||||
* | Issue #4446: Add platforms keyword. | Martin v. Löwis | 2008-12-13 | 1 | -0/+2 |
| | |||||
* | Issue #4084: fix bug in handling of NaNs in Decimal.max, Decimal.min, | Mark Dickinson | 2008-12-11 | 3 | -16/+37 |
| | | | | Decimal.max_mag and Decimal.min_mag. | ||||
* | #4259: update the URL pattern for module documentation | Andrew M. Kuchling | 2008-12-11 | 1 | -2/+3 |
| | |||||
* | Backport issue 4597 to python 2.5.3: Fixed several opcodes that weren't always | Jeffrey Yasskin | 2008-12-10 | 3 | -3/+31 |
| | | | | propagating exceptions. | ||||
* | Issue #4302: Minor corrections to smtplib. (Backport r60975) | Hirokazu Yamamoto | 2008-12-10 | 2 | -2/+4 |
| | |||||
* | Backported issue #4589 to Python 2.5.3: Propagated an exception thrown by a | Jeffrey Yasskin | 2008-12-10 | 3 | -3/+42 |
| | | | | context manager's __exit__ method's result while it's being converted to bool. | ||||
* | - Tools/faqwiz/move-faqwiz.sh: Fix unsecure use of temporary files | Matthias Klose | 2008-11-30 | 1 | -3/+9 |
| | |||||
* | backport r67373: checking for errors from NEW_IDENTIFIER | Benjamin Peterson | 2008-11-25 | 1 | -25/+65 |
| | |||||
* | #4317: Fix an Array Bounds Read in imageop.rgb2rgb8. | Amaury Forgeot d'Arc | 2008-11-18 | 3 | -2/+5 |
| | | | | Backport of r67266 | ||||
* | backport r67246 from the trunk | Benjamin Peterson | 2008-11-17 | 3 | -12/+88 |
| | |||||
* | regenerate configure | Benjamin Peterson | 2008-11-16 | 1 | -2/+2 |
| | |||||
* | #4316: configure.in markup fix (backport from r67227). | Georg Brandl | 2008-11-16 | 1 | -1/+1 |
| | |||||
* | Backport r66813: per Greg Ward, optparse is no longer being externally ↵ | Andrew M. Kuchling | 2008-11-14 | 1 | -10/+2 |
| | | | | maintained. | ||||
* | Backport r66804: #1415508 from Rocky Bernstein: add docstrings for ↵ | Andrew M. Kuchling | 2008-11-14 | 1 | -0/+10 |
| | | | | enable_interspersed_args(), disable_interspersed_args() | ||||
* | Issue #3774: Fixed an error when create a Tkinter menu item without command | Hirokazu Yamamoto | 2008-11-03 | 2 | -11/+16 |
| | | | | and then remove it. Written by Guilherme Polo (gpolo). Backport of r67082. | ||||
* | backport r67077 from the trunk: parser module now correctly validates ↵ | Benjamin Peterson | 2008-11-03 | 4 | -2/+7 |
| | | | | relative imports | ||||
* | Issue #4176: Pickle would crash the interpreter when a __reduce__ function | Amaury Forgeot d'Arc | 2008-10-30 | 3 | -26/+59 |
| | | | | | | | does not return an iterator for the 4th and 5th items. (sequence-like and mapping-like state) Backport of r67049. | ||||
* | Modify ctypes types with 'official' functions. Backport from trunk, | Thomas Heller | 2008-10-18 | 2 | -1/+4 |
| | | | | snv rev 59943 and 59946. | ||||
* | backport a fix for setup.py's -R | Benjamin Peterson | 2008-10-16 | 1 | -1/+2 |
| |