summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - On 64-bit platforms, when __len__() returns a value that cannot beGuido van Rossum2005-09-203-2/+15
| | | | | | | represented as a C int, raise OverflowError. (Forward port from 2.4.2; the patch to classobject.c was already in but needed a correction in the error message text.)
* clean-up tracing of C functions. In particular, don't call the trace funcArmin Rigo2005-09-201-26/+31
| | | | with an exception currently set!
* Removed a check "if (args != NULL)" which is always True and makes no sense.Armin Rigo2005-09-201-5/+3
|
* Don't call memset() before checking that the ptr is not NULL.Armin Rigo2005-09-201-1/+1
|
* Added support for (optionally) bracketing calls withJack Jansen2005-09-201-0/+8
| | | | Py_{BEGIN,END}_ALLOW_THREADS.
* - 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.
* A minor fix for 64-bit platforms: when __len__() returns Python intGuido van Rossum2005-09-191-1/+11
| | | | | | containing a value that doesn't fit in a C int, raise OverflowError rather than truncating silently (and having 50% chance of hitting the "it should be >= 0" error).
* Reverted revision 1.83, which introduced a bug and subtle incompatibilityArmin Rigo2005-09-191-8/+6
| | | | issues. See bug #1112856.
* Note fix of memory leak.Neal Norwitz2005-09-191-0/+2
|
* Remove unnecessary/extra parens when returning a value.Neal Norwitz2005-09-191-6/+6
|
* Forward port fixes for problems reported by valgrindNeal Norwitz2005-09-191-1/+2
|
* skip _locale test if OS X < 10.4Skip Montanaro2005-09-192-0/+9
|
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-182-0/+39
| | | | Will backport to Python 2.4.
* Patch #1213831: Fix typo in unicodedata._getcode.Martin v. Löwis2005-09-182-1/+3
| | | | Will backport to Python 2.4.
* Test case for latest complexobject fix.Georg Brandl2005-09-171-0/+2
|
* Added lock acquisition around handler removal from loggerVinay Sajip2005-09-161-1/+5
|
* No longer ignore exceptions raised by comparisons during key lookup.Raymond Hettinger2005-09-162-48/+61
| | | | Inspired by Armin Rigo's suggestion to do the same with dictionaries.
* patch [ 1118729 ] Error in representation of complex numbers(again)Georg Brandl2005-09-161-6/+3
|
* Change type on variable to silence gcc 4 warning. Call signature was found atBrett Cannon2005-09-161-1/+1
| | | | http://darwinsource.opendarwin.org/10.4.2/dyld-43.1/src/dyldAPIs.cpp .
* patch [ 1277677 ] tkinter hello world example bugGeorg Brandl2005-09-151-1/+3
|
* patch [ 1119423 ] python -c readlink()s and stat()s '-c'Georg Brandl2005-09-151-3/+3
|
* fix typoGeorg Brandl2005-09-151-1/+1
|
* bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault.Georg Brandl2005-09-151-0/+7
|
* Clear out the regex cache when the TimeRE cache is invalidated by a localeBrett Cannon2005-09-153-1/+6
| | | | | | change. Fixes 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
|
* 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.
* - 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).
* - Changes donated by Elemental Security to make it work on HP-UX 11 onGuido van Rossum2005-09-144-2/+37
| | | | Itanium2 with HP's 64-bit compiler (SF patch #1225212).
* comma nitGeorg Brandl2005-09-141-1/+1
|
* Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather thanGustavo Niemeyer2005-09-143-0/+10
| | | | considering it exactly like a '*'.
* Patch #1290454: Fix reload() error message when parent module is not inGeorg Brandl2005-09-141-2/+3
| | | | sys.modules.
* Add more links to the 'What Next?' section; rewrite to be brieferAndrew M. Kuchling2005-09-131-17/+51
|
* Speed-up escape()Raymond Hettinger2005-09-121-1/+7
|
* Better wording for integer ref entry.Georg Brandl2005-09-121-2/+2
|
* Shorten run-on sentenceAndrew M. Kuchling2005-09-121-1/+1
|
* Update linkAndrew M. Kuchling2005-09-121-4/+2
|
* Update linkAndrew M. Kuchling2005-09-121-1/+1
|
* Add FAQ entry regarding non-expoential representation.Raymond Hettinger2005-09-111-2/+11
|
* Minor cleanup.Raymond Hettinger2005-09-111-2/+1
|
* Corrected version of 1.170Raymond Hettinger2005-09-101-6/+3
|
* Revert 1.170. Add tests.Raymond Hettinger2005-09-102-3/+12
|
* Simplify and speed-up unquote().Raymond Hettinger2005-09-101-15/+10
|
* Simplify and speed-up quote_plus().Raymond Hettinger2005-09-101-6/+3
|
* SF #1285086: urllib.quote is too slowRaymond Hettinger2005-09-091-24/+12
| | | | Simplify and speed-up quote() function.
* Added _handlerList to allow shutdown to flush and close handlers in reverse ↵Vinay Sajip2005-09-081-1/+4
| | | | order of creation (see SF# 1282539)
* Quote docstring with r"" to keep '\r\n' in example code.Hye-Shik Chang2005-09-071-1/+1
|
* 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