Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 16 | -94/+169 |
| | |||||
* | Patch #1288833: Removed thread lock from socket.getaddrinfo on | Hye-Shik Chang | 2005-09-24 | 2 | -1/+9 |
| | | | | | FreeBSD 5.3 and later versions which got thread-safe getaddrinfo(3). (Reported by Maxim Sobolev) | ||||
* | Changed license header: Now simply referring to PSF. This closes bug | Peter Astrand | 2005-09-23 | 1 | -22/+2 |
| | | | | 1138653. | ||||
* | The key to the various sort columns got lost. Pulled from | Skip Montanaro | 2005-09-23 | 1 | -0/+10 |
| | | | | http://mail.python.org/pipermail/python-dev/2002-July/026876.html | ||||
* | SF #1297059, doc incorrect return type for search() method. (There is a ↵ | Neal Norwitz | 2005-09-23 | 1 | -4/+3 |
| | | | | description of returned values at the top, so just remove the sentance and correct an example.) | ||||
* | update URL into the Python wiki | Fred Drake | 2005-09-22 | 1 | -1/+1 |
| | | | | (forward port revision 1.10.4.1) | ||||
* | Patches #1298449 and #1298499: Add some missing checks for error | Michael W. Hudson | 2005-09-22 | 4 | -7/+26 |
| | | | | | | returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate. | ||||
* | MacOSX 10.4 apparently does not allow the creation time to be set to later | Jack Jansen | 2005-09-21 | 1 | -2/+2 |
| | | | | | | than the modification time. Changed the SetDates test to accomodate. Backport candidate. | ||||
* | SF Patch #1297028, cjkcodecs does not initialize type pointer | Neal Norwitz | 2005-09-21 | 2 | -0/+7 |
| | | | | | | | Fix segfault. I tried to write a test, but it wouldn't crash when running regrtest. This really should have some sort of test. Should definitely be backported. | ||||
* | Added a class MallocHeapOutputBufferType for types that are passed | Jack Jansen | 2005-09-20 | 1 | -0/+29 |
| | | | | as &buffer, &size and allocated by the called function. | ||||
* | Update 64-bit AIX and HP-UX build instructions (forward port). | Guido van Rossum | 2005-09-20 | 1 | -4/+11 |
| | |||||
* | C89 compliance. | Armin Rigo | 2005-09-20 | 1 | -2/+2 |
| | |||||
* | test and fix for buggy handling of exceptions raised by C functions, | Armin Rigo | 2005-09-20 | 2 | -3/+22 |
| | | | | | causing the profiler to crash on an AssertionError if the same Python function catches multiple exceptions from C functions. | ||||
* | - On 64-bit platforms, when __len__() returns a value that cannot be | Guido van Rossum | 2005-09-20 | 3 | -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 func | Armin Rigo | 2005-09-20 | 1 | -26/+31 |
| | | | | with an exception currently set! | ||||
* | Removed a check "if (args != NULL)" which is always True and makes no sense. | Armin Rigo | 2005-09-20 | 1 | -5/+3 |
| | |||||
* | Don't call memset() before checking that the ptr is not NULL. | Armin Rigo | 2005-09-20 | 1 | -1/+1 |
| | |||||
* | Added support for (optionally) bracketing calls with | Jack Jansen | 2005-09-20 | 1 | -0/+8 |
| | | | | Py_{BEGIN,END}_ALLOW_THREADS. | ||||
* | - Patch #1166948: locale.py: Prefer LC_ALL, LC_CTYPE and LANG over LANGUAGE | Matthias Klose | 2005-09-20 | 2 | -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 int | Guido van Rossum | 2005-09-19 | 1 | -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 incompatibility | Armin Rigo | 2005-09-19 | 1 | -8/+6 |
| | | | | issues. See bug #1112856. | ||||
* | Note fix of memory leak. | Neal Norwitz | 2005-09-19 | 1 | -0/+2 |
| | |||||
* | Remove unnecessary/extra parens when returning a value. | Neal Norwitz | 2005-09-19 | 1 | -6/+6 |
| | |||||
* | Forward port fixes for problems reported by valgrind | Neal Norwitz | 2005-09-19 | 1 | -1/+2 |
| | |||||
* | skip _locale test if OS X < 10.4 | Skip Montanaro | 2005-09-19 | 2 | -0/+9 |
| | |||||
* | Patch #1268314: Cache lines in StreamReader.readlines for performance. | Martin v. Löwis | 2005-09-18 | 2 | -0/+39 |
| | | | | Will backport to Python 2.4. | ||||
* | Patch #1213831: Fix typo in unicodedata._getcode. | Martin v. Löwis | 2005-09-18 | 2 | -1/+3 |
| | | | | Will backport to Python 2.4. | ||||
* | Test case for latest complexobject fix. | Georg Brandl | 2005-09-17 | 1 | -0/+2 |
| | |||||
* | Added lock acquisition around handler removal from logger | Vinay Sajip | 2005-09-16 | 1 | -1/+5 |
| | |||||
* | No longer ignore exceptions raised by comparisons during key lookup. | Raymond Hettinger | 2005-09-16 | 2 | -48/+61 |
| | | | | Inspired by Armin Rigo's suggestion to do the same with dictionaries. | ||||
* | patch [ 1118729 ] Error in representation of complex numbers(again) | Georg Brandl | 2005-09-16 | 1 | -6/+3 |
| | |||||
* | Change type on variable to silence gcc 4 warning. Call signature was found at | Brett Cannon | 2005-09-16 | 1 | -1/+1 |
| | | | | http://darwinsource.opendarwin.org/10.4.2/dyld-43.1/src/dyldAPIs.cpp . | ||||
* | patch [ 1277677 ] tkinter hello world example bug | Georg Brandl | 2005-09-15 | 1 | -1/+3 |
| | |||||
* | patch [ 1119423 ] python -c readlink()s and stat()s '-c' | Georg Brandl | 2005-09-15 | 1 | -3/+3 |
| | |||||
* | fix typo | Georg Brandl | 2005-09-15 | 1 | -1/+1 |
| | |||||
* | bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. | Georg Brandl | 2005-09-15 | 1 | -0/+7 |
| | |||||
* | Clear out the regex cache when the TimeRE cache is invalidated by a locale | Brett Cannon | 2005-09-15 | 3 | -1/+6 |
| | | | | | | change. Fixes bug #1290505. | ||||
* | *** empty log message *** | Georg Brandl | 2005-09-14 | 1 | -0/+3 |
| | |||||
* | bug [ 1007046 ] os.startfile() doesn't accept Unicode filenames | Georg Brandl | 2005-09-14 | 1 | -1/+2 |
| | |||||
* | bug [ 1274828 ] splitunc not documented | Georg Brandl | 2005-09-14 | 2 | -0/+11 |
| | |||||
* | Complete format code support in getargs.c::skipitem(), which is called when | Georg Brandl | 2005-09-14 | 1 | -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 when | Georg Brandl | 2005-09-14 | 1 | -59/+39 |
| | | | | evaluating keyword arguments. | ||||
* | - Changes donated by Elemental Security to make it work on AIX 5.3 | Guido van Rossum | 2005-09-14 | 11 | -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 on | Guido van Rossum | 2005-09-14 | 4 | -2/+37 |
| | | | | Itanium2 with HP's 64-bit compiler (SF patch #1225212). | ||||
* | comma nit | Georg Brandl | 2005-09-14 | 1 | -1/+1 |
| | |||||
* | Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than | Gustavo Niemeyer | 2005-09-14 | 3 | -0/+10 |
| | | | | considering it exactly like a '*'. | ||||
* | Patch #1290454: Fix reload() error message when parent module is not in | Georg Brandl | 2005-09-14 | 1 | -2/+3 |
| | | | | sys.modules. | ||||
* | Add more links to the 'What Next?' section; rewrite to be briefer | Andrew M. Kuchling | 2005-09-13 | 1 | -17/+51 |
| | |||||
* | Speed-up escape() | Raymond Hettinger | 2005-09-12 | 1 | -1/+7 |
| | |||||
* | Better wording for integer ref entry. | Georg Brandl | 2005-09-12 | 1 | -2/+2 |
| |