Martin v. Löwis
8cd94b4306
Tagging for release of Python 2.5.5c1
2010-01-14 17:53:16 +00:00
Martin v. Löwis
906e26e897
Prepare for 2.5.5c1.
2010-01-14 17:41:58 +00:00
Mark Dickinson
a822768c62
Restore the svn property changes in r76754
2009-12-11 20:09:24 +00:00
Vinay Sajip
02d3dcde5b
Issue #7470 : logging: fix bug in Unicode encoding fallback.
2009-12-11 09:16:01 +00:00
Vinay Sajip
b9c85c156b
Issue #7403 : logging: Fixed possible race condition in lock creation.
2009-11-27 15:34:35 +00:00
Philip Jenvey
4c9c260c1a
#6990 : clear threading.local's key only after its thread state is removed:
...
fixes local subclasses leaving old state around after a ref cycle GC which
could be recycled by new locals
(backported from r75123)
2009-09-29 05:30:42 +00:00
Lars Gustäbel
b4dc921e30
Avoid EOFError being passed to the caller (restoring the
...
old behavior).
2009-03-22 21:34:05 +00:00
Lars Gustäbel
7623294cb7
Issue #5068 : Fixed the tarfile._BZ2Proxy.read() method that would loop
...
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)
2009-03-22 20:48:03 +00:00
Guido van Rossum
f73bf85942
News for issue 5389 fix.
2009-03-05 21:49:40 +00:00
Guido van Rossum
c261e4868b
Avoid potential for undefined variable 'startinpos' in PyUnicode_DecodeUTF7().
...
See issue #5389 .
2009-03-05 21:47:33 +00:00
Martin v. Löwis
2a67a84954
Tagging for release of Python 2.5.4
2008-12-23 13:22:06 +00:00
Martin v. Löwis
3b43e46b3d
Prepare for 2.5.4.
2008-12-23 13:18:53 +00:00
Martin v. Löwis
8ba4cc9f99
Issue #4689 : Fix typo.
2008-12-23 13:15:02 +00:00
Martin v. Löwis
3c08e45b70
Revert patch for #1706039 , as it can crash the interpreter.
2008-12-23 13:10:43 +00:00
Martin v. Löwis
edf14317e3
Backport of r67908:
...
Added test case to ensure attempts to read from a file opened for writing
fail.
2008-12-23 13:07:51 +00:00
Martin v. Löwis
b90b144c47
Post 2.5.3.
2008-12-20 03:38:16 +00:00
Martin v. Löwis
f7702adc3b
Tagging for release of Python 2.5.3
2008-12-19 15:09:20 +00:00
Martin v. Löwis
3d9eecb0bb
Prepare for 2.5.3.
2008-12-19 15:08:45 +00:00
Martin v. Löwis
e467f43373
Build against system Tcl framework.
2008-12-19 15:05:38 +00:00
Martin v. Löwis
20fde6641a
In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.
2008-12-17 18:03:01 +00:00
Martin v. Löwis
d6e258a5a7
Add 2.5.3 final section.
2008-12-13 22:32:24 +00:00
Martin v. Löwis
9fb554ffae
Tagging for release of Python 2.5.3c1
2008-12-13 15:44:13 +00:00
Martin v. Löwis
073ff240e7
Prepare for 2.5.3c1.
2008-12-13 15:42:40 +00:00
Martin v. Löwis
0896d3e983
Add 2.5.3.
2008-12-13 15:40:54 +00:00
Martin v. Löwis
084486b234
Issue #1706039 : Support continued reading from a file even after
...
EOF was hit.
2008-12-13 15:36:49 +00:00
Martin v. Löwis
710fb8bf45
Issue #1040026 : Fix os.times result on systems where HZ is incorrect.
2008-12-13 15:14:30 +00:00
Martin v. Löwis
c252d9bc08
Issue #3767 : Convert Tk object to string in tkColorChooser.
2008-12-13 15:09:44 +00:00
Martin v. Löwis
afb0dabaca
Backport of r59654.
...
Issue #4342 : Always convert Text.index result to string.
2008-12-13 15:04:58 +00:00
Martin v. Löwis
8a64048a22
Backport of r64212
...
Issue #1683 : prevent forking from interfering in threading storage.
2008-12-13 14:59:04 +00:00
Martin v. Löwis
e9859df798
Issue 3248: Allow placing ScrolledText in a PanedWindow.
2008-12-13 14:48:13 +00:00
Martin v. Löwis
358076f3e4
Backport of r66703:
...
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.
2008-12-13 14:42:53 +00:00
Martin v. Löwis
46d410616d
Issue #4228 : Pack negative values the same way as 2.4
...
in struct's L format.
2008-12-13 14:34:06 +00:00
Martin v. Löwis
ec96c0205b
Issue #4368 : Don't define _XOPEN_SOURCE on FreeBSD 4.*.
2008-12-13 14:13:52 +00:00
Martin v. Löwis
67feec8c93
Issue #4446 : Add platforms keyword.
2008-12-13 14:07:35 +00:00
Mark Dickinson
3f122784a3
Issue #4084 : fix bug in handling of NaNs in Decimal.max, Decimal.min,
...
Decimal.max_mag and Decimal.min_mag.
2008-12-11 09:06:49 +00:00
Andrew M. Kuchling
2443efb7ed
#4259 : update the URL pattern for module documentation
2008-12-11 02:09:36 +00:00
Jeffrey Yasskin
6f5d3f326f
Backport issue 4597 to python 2.5.3: Fixed several opcodes that weren't always
...
propagating exceptions.
2008-12-10 17:23:20 +00:00
Hirokazu Yamamoto
6f63190ded
Issue #4302 : Minor corrections to smtplib. (Backport r60975)
2008-12-10 09:54:59 +00:00
Jeffrey Yasskin
478a1aa537
Backported issue #4589 to Python 2.5.3: Propagated an exception thrown by a
...
context manager's __exit__ method's result while it's being converted to bool.
2008-12-10 07:28:12 +00:00
Matthias Klose
05e9c9dd97
- Tools/faqwiz/move-faqwiz.sh: Fix unsecure use of temporary files
2008-11-30 13:31:22 +00:00
Benjamin Peterson
1bd74dea9b
backport r67373: checking for errors from NEW_IDENTIFIER
2008-11-25 22:49:28 +00:00
Amaury Forgeot d'Arc
ef633d7c5d
#4317 : Fix an Array Bounds Read in imageop.rgb2rgb8.
...
Backport of r67266
2008-11-18 22:35:48 +00:00
Benjamin Peterson
42fe1a2ff8
backport r67246 from the trunk
2008-11-17 23:35:24 +00:00
Benjamin Peterson
a8629ce4b8
regenerate configure
2008-11-16 17:57:31 +00:00
Georg Brandl
99b67fa222
#4316 : configure.in markup fix (backport from r67227).
2008-11-16 08:01:08 +00:00
Andrew M. Kuchling
b9433b5d5e
Backport r66813: per Greg Ward, optparse is no longer being externally maintained.
2008-11-14 00:17:12 +00:00
Andrew M. Kuchling
8b2b75692a
Backport r66804: #1415508 from Rocky Bernstein: add docstrings for enable_interspersed_args(), disable_interspersed_args()
2008-11-14 00:11:12 +00:00
Hirokazu Yamamoto
007ee17e21
Issue #3774 : Fixed an error when create a Tkinter menu item without command
...
and then remove it. Written by Guilherme Polo (gpolo). Backport of r67082.
2008-11-03 18:18:08 +00:00
Benjamin Peterson
6f08e85ad9
backport r67077 from the trunk: parser module now correctly validates relative imports
2008-11-03 15:19:35 +00:00
Amaury Forgeot d'Arc
3b335ff340
Issue #4176 : Pickle would crash the interpreter when a __reduce__ function
...
does not return an iterator for the 4th and 5th items.
(sequence-like and mapping-like state)
Backport of r67049.
2008-10-30 21:40:05 +00:00