summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r242c1'.v2.4.2c1cvs2svn2005-09-201-0/+1
|
* (backport) test and fix for buggy handling of exceptions raised by CArmin Rigo2005-09-202-3/+22
| | | | | functions, causing the profiler to crash on an AssertionError if the same Python function catches multiple exceptions from C functions.
* (backport) tracing of C functions: don't call the trace funcArmin Rigo2005-09-201-26/+31
| | | | with an exception currently set!
* C89 compliance.Armin Rigo2005-09-201-2/+2
|
* Update 64-bit AIX and HP-UX build instructions.Guido van Rossum2005-09-201-4/+11
|
* - On 64-bit platforms, when __len__() returns a value that cannot beGuido van Rossum2005-09-203-2/+25
| | | | | represented as a C int, raise OverflowError. (Will forward-port.)
* backport:Anthony Baxter2005-09-201-0/+7
| | | | | | | | | | test_default_encoding_issues(): Fully restore sys.setdefaultencoding. test_site often failed under "regrtest.py -r", because this xmlrpc test left sys with a setdefaultencoding attribute, but loading site.py removes that attribute and test_site.py verifies the attribute is gone. Changed this test to get rid of sys.setdefaultencoding if it didn't exist when this test started.
* add 2.4.2 to the LaTeX version of the release historyFred Drake2005-09-201-0/+1
|
* pre-release machinationsAnthony Baxter2005-09-208-14/+17
|
* - Patch #1166948: locale.py: Prefer LC_ALL, LC_CTYPE and LANG over LANGUAGEMatthias Klose2005-09-202-1/+9
| | | | | | | to get the correct encoding. - Patch #1166938: locale.py: Parse LANGUAGE as a colon separated list of languages.
* Note fix of memory leak.Neal Norwitz2005-09-191-0/+2
|
* Fix problems reported by valgrind:Neal Norwitz2005-09-191-1/+2
| | | | | | | * Fix memory leak in posix.access() * Fix use of uninitialized value in forkpty() - from the manpage it isn't clear if there are conditions where master_fd are uninitialized, but it's safer to initialize
* Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather thanGeorg Brandl2005-09-183-0/+10
| | | | | | considering it exactly like a '*'. Backport from 2.5 branch.
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-182-0/+39
|
* Patch #1213831: Fix typo in unicodedata._getcode.Martin v. Löwis2005-09-182-1/+3
|
* Test case for latest complexobject fix.Georg Brandl2005-09-171-0/+2
|
* Misc. backported changesVinay Sajip2005-09-161-1/+4
|
* Misc. backported changesVinay Sajip2005-09-162-6/+15
|
* backport patch [ 1118729 ] Error in representation of complex numbers(again)Georg Brandl2005-09-161-6/+3
|
* Sync-up with head except for 1.72 which is Py2.5 specific.Raymond Hettinger2005-09-151-10/+10
|
* Sync-up with minor changes to the head.Raymond Hettinger2005-09-151-14/+15
|
* Removed assignment to an unused variable.Raymond Hettinger2005-09-151-1/+0
|
* backport patch [ 1277677 ] tkinter hello world example bugGeorg Brandl2005-09-151-1/+3
|
* backport patch [ 1119423 ] python -c readlink()s and stat()s '-c'Georg Brandl2005-09-151-3/+3
|
* fix typoGeorg Brandl2005-09-151-1/+1
|
* backport bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault.Georg Brandl2005-09-151-0/+7
|
* Fix bug #687747 and patch #1077979 in webbrowser.py.Georg Brandl2005-09-151-2/+2
|
* Sync-up with patches to the head.Raymond Hettinger2005-09-151-53/+61
| | | | | Includes SF 1016880: urllib.urlretrieve silently truncates downloads and the performance fix-ups.
* Backport SF #1209527.Raymond Hettinger2005-09-151-9/+13
|
* Clear the regex cache when the locale changes.Brett Cannon2005-09-153-1/+7
| | | | Backport of fix for bug #1290505.
* *** empty log message ***Georg Brandl2005-09-141-0/+3
|
* bug [ 1007046 ] os.startfile() doesn't accept Unicode filenamesGeorg Brandl2005-09-141-1/+2
|
* backport bug [ 1274828 ] splitunc not documentedGeorg Brandl2005-09-142-0/+11
|
* Complete format code support in getargs.c::skipitem(), which is called whenGeorg Brandl2005-09-141-0/+3
| | | | | | | | | | | | | evaluating keyword arguments. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: Python/getargs.c CVS: ----------------------------------------------------------------------
* Complete format code support in getargs.c::skipitem(), which is called whenGeorg Brandl2005-09-141-59/+39
| | | | | | | | | | | | | evaluating keyword arguments. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: Python/getargs.c CVS: ----------------------------------------------------------------------
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-1411-51/+106
| | | | | with IBM's 64-bit compiler (SF patch #1284289). This also closes SF bug #105470: test_pwd fails on 64bit system (Opteron).
* (backport from HEAD)Guido van Rossum2005-09-144-6/+41
| | | | | - Changes donated by Elemental Security to make it work on HP-UX 11 on Itanium2 with HP's 64-bit compiler (SF patch #1225212).
* comma nitGeorg Brandl2005-09-141-1/+1
|
* backport notes about basicConfig() changes to 2.4 branchSkip Montanaro2005-09-141-1/+23
|
* Backport of patch #1290454: Fix reload() error message when parent is notGeorg Brandl2005-09-141-2/+3
| | | | in sys.modules.
* Better wording for integer ref entry (from HEAD 1.131).Georg Brandl2005-09-121-2/+2
|
* Add FAQ entry regarding non-expoential representation.Raymond Hettinger2005-09-111-2/+11
|
* note that the return and yield statements cannot be used at the top level inFred Drake2005-09-071-1/+6
| | | | | | exec statements; people coming from certain other languages seem to be confused by this on a regular basis (backported from trunk revision 1.77)
* - fix typo report by email, only 1.5 years lateFred Drake2005-09-071-7/+7
| | | | | - fix several consistency nits relating to \method{...()} (backport of trunk revision 1.130)
* Clarify what is meant with "whole numbers".Georg Brandl2005-09-041-1/+2
|
* use a test for PDF support that is more portable across teTeX major versionsMatthias Klose2005-09-042-4/+8
| | | | (closes SF bug #1238210)
* bug [ 1274069 ] bz2module.c compiler warningGeorg Brandl2005-09-031-5/+12
|
* - Correct PyBool_FromLong's return type and its description.Georg Brandl2005-09-031-226/+226
| | | | | | | | | | | | | - Unify function description mode ("Return X" vs "Returns X") CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: Doc/api/concrete.tex CVS: ----------------------------------------------------------------------
* Backport checkin:Walter Dörwald2005-09-012-1/+6
| | | | | | SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads from the input stream, so that the output is a byte string in the correct encoding instead of a unicode string.
* Reverting previous checkin. This breaks too much of HTMLParser to be appliedGeorg Brandl2005-09-011-1/+1
| | | | | | | | | | | | | | without thought. Anyway, such malformed HTML is better handled by something like BeautifulSoup. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: Lib/HTMLParser.py CVS: ----------------------------------------------------------------------