summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-06125-44271/+44271
| | | | | | the files will have the right line ending even if the extension is not active.
* #11292: add missing A_REVERSE to curses attribute table.Georg Brandl2011-03-061-0/+3
|
* #11294: add missing ERA_T_FMT to locale docs.Georg Brandl2011-03-061-3/+8
|
* #11239: add } to list of metacharacters (it is only a metacharacter ↵Georg Brandl2011-03-061-1/+1
| | | | sometimes, ie. when closing a {n,m} group, but so is ].
* #11373: fix spelling.Georg Brandl2011-03-061-1/+1
|
* #11392: you can trust the computer, but you have to know what it does.Georg Brandl2011-03-061-3/+5
|
* #11405: do not reference the string module again for its deprecated ↵Georg Brandl2011-03-061-3/+4
| | | | functions, only for Template class.
* #11400: remove reference to pre-1.5 assignment behavior.Georg Brandl2011-03-061-3/+0
|
* Port build identification from default branch.Georg Brandl2011-03-066-5/+120
|
* Add some more ignores from default.Georg Brandl2011-03-061-0/+3
|
* Issue #11391: Writing to a mmap object created withAntoine Pitrou2011-03-063-5/+22
| | | | | `mmap.PROT_READ|mmap.PROT_EXEC` would segfault instead of raising a TypeError. Patch by Charles-François Natali.
* Lib/email/test/data/msg_26.txt had its line endings wrong in the SVN repository.Antoine Pitrou2011-03-051-45/+45
| | | | (they were probably converted right in working copies through an SVN property)
* Merge tags from 2.6.Georg Brandl2011-03-051-0/+68
|\
| * Merge tags from 2.5.Georg Brandl2011-03-051-1/+54
| |\
| | * Add tags from the closed branches.Georg Brandl2011-03-051-0/+41
| | |
* | | Dummy-merge 2.6 branch into 2.7 branch.Georg Brandl2011-03-050-0/+0
|\ \ \ | |/ /
| * | Dummy-merge 2.5 branch into 2.6 branch.Georg Brandl2011-03-050-0/+0
| |\ \ | | |/
| | * Add .hgeol file and fix newlines in the 2.5 branch.Georg Brandl2011-03-0510-588/+627
| | |
| | * Fix tag references in 2.5 branch.Georg Brandl2011-03-051-69/+54
| | |
| | * Merge r82494 from the python2.6 branch:Matthias Klose2010-10-172-73/+74
| | | | | | | | | | | | | | | Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module, ensure that the input string length is a multiple of the frame size
| | * Merge r81080 from the python2.6 branch:Matthias Klose2010-10-171-17/+8
| | | | | | | | | | | | Issue #8674: fix another bogus overflow check in audioop module.
| | * Merged revisions 81046 from the python2.6 branch:Matthias Klose2010-10-173-28/+28
| | | | | | | | | | | | | | | Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop module. Thanks Tomas Hoger for the patch.
| | * Post 2.5.5.Martin v. Löwis2010-01-312-3/+9
| | |
| | * Tagging for release of Python 2.5.5Martin v. Löwis2010-01-311-0/+1
| | |
| | * Prepare for 2.5.5.v2.5.5Martin v. Löwis2010-01-315-8/+19
| | |
| | * Tagging for release of Python 2.5.5c2Martin v. Löwis2010-01-241-0/+1
| | |
| | * Prepare for 2.5.5c2.v2.5.5c2Martin v. Löwis2010-01-245-6/+13
| | |
| | * - expat: Fix DoS via malformed XML (CVE-2009-3720).Matthias Klose2010-01-212-2/+3
| | |
| | * - Fix DoS via XML document with malformed UTF-8 sequences (CVE_2009_3560).Matthias Klose2010-01-212-0/+14
| | |
| | * Tagging for release of Python 2.5.5c1Martin v. Löwis2010-01-141-0/+1
| | |
| | * Prepare for 2.5.5c1.v2.5.5c1Martin v. Löwis2010-01-145-11/+16
| | |
| | * Restore the svn property changes in r76754Mark Dickinson2009-12-110-0/+0
| | |
| | * Issue #7470: logging: fix bug in Unicode encoding fallback.Vinay Sajip2009-12-110-0/+0
| | |
| | * Issue #7403: logging: Fixed possible race condition in lock creation.Vinay Sajip2009-11-272-4/+6
| | |
| | * #6990: clear threading.local's key only after its thread state is removed:Philip Jenvey2009-09-293-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 theLars Gustäbel2009-03-221-1/+4
| | | | | | | | | | | | old behavior).
| | * Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loopLars Gustäbel2009-03-223-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 Rossum2009-03-051-0/+3
| | |
| | * Avoid potential for undefined variable 'startinpos' in PyUnicode_DecodeUTF7().Guido van Rossum2009-03-051-2/+3
| | | | | | | | | | | | See issue #5389.
| | * Tagging for release of Python 2.5.4Martin v. Löwis2008-12-231-0/+1
| | |
| | * Prepare for 2.5.4.v2.5.4Martin v. Löwis2008-12-237-6/+12
| | |
| | * Issue #4689: Fix typo.Martin v. Löwis2008-12-231-1/+1
| | |
| | * Revert patch for #1706039, as it can crash the interpreter.Martin v. Löwis2008-12-233-67/+19
| | |
| | * Backport of r67908:Martin v. Löwis2008-12-232-0/+8
| | | | | | | | | | | | | | | Added test case to ensure attempts to read from a file opened for writing fail.
| | * Post 2.5.3.Martin v. Löwis2008-12-202-3/+9
| | |
| | * Tagging for release of Python 2.5.3Martin v. Löwis2008-12-191-0/+1
| | |
| | * Prepare for 2.5.3.v2.5.3Martin v. Löwis2008-12-196-8/+13
| | |
| | * Build against system Tcl framework.Martin v. Löwis2008-12-192-7/+1
| | |
| | * In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.Martin v. Löwis2008-12-172-4/+9
| | |
| | * Add 2.5.3 final section.Martin v. Löwis2008-12-131-0/+6
| | |