| Commit message (Expand) | Author | Age | Files | Lines |
* | Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. | Tim Peters | 2001-10-07 | 1 | -12/+4 |
|
|
* | _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. | Tim Peters | 2001-10-06 | 1 | -14/+21 |
|
|
* | Repaired the debug Windows deaths in test_descr, by allocating enough | Tim Peters | 2001-10-06 | 1 | -7/+8 |
|
|
* | _PyObject_GC_Malloc(): split a complicated line in two. As is, there was | Tim Peters | 2001-10-06 | 1 | -2/+3 |
|
|
* | Adjust the _weakref module to use the public API for the weak reference | Fred Drake | 2001-10-05 | 1 | -717/+15 |
|
|
* | Fix typo in docstring | Andrew M. Kuchling | 2001-10-05 | 1 | -1/+1 |
|
|
* | Add chroot call. Implements feature #459267. | Martin v. Löwis | 2001-10-04 | 1 | -0/+15 |
|
|
* | Add various typecasts (back and forth from char * to unsigned char *) | Greg Ward | 2001-10-04 | 1 | -5/+5 |
|
|
* | SF patch [#466877] SIGBREAK is missing from signal module. | Tim Peters | 2001-10-01 | 1 | -0/+5 |
|
|
* | Patch #462122: add readline startup and pre_event hooks. | Martin v. Löwis | 2001-09-30 | 1 | -24/+127 |
|
|
* | Patch #462190, patch #464070: Support quoted printable in the binascii module. | Martin v. Löwis | 2001-09-30 | 1 | -0/+296 |
|
|
* | SF [#466125] PyLong_AsLongLong works for any integer. | Tim Peters | 2001-09-30 | 1 | -0/+50 |
|
|
* | Be more rigorous about making pathnames absolute, to address SF bug | Guido van Rossum | 2001-09-28 | 1 | -53/+58 |
|
|
* | Add tests for new PyErr_NormalizeException() behavior | Jeremy Hylton | 2001-09-26 | 1 | -0/+26 |
|
|
* | SF patch #459385 (Norman Vine): time.timezone fix for Cygwin. | Guido van Rossum | 2001-09-25 | 1 | -19/+19 |
|
|
* | StringIO patch #462596: let's [c]StringIO accept read buffers on | Marc-André Lemburg | 2001-09-24 | 1 | -9/+5 |
|
|
* | Patch #463421: speed up md5 module with real memcpy/set. | Martin v. Löwis | 2001-09-24 | 1 | -28/+4 |
|
|
* | Reactivate participation of expat parsers in GC. Fixes bug #462710. | Martin v. Löwis | 2001-09-23 | 1 | -2/+33 |
|
|
* | I_getiter(): Function for the tp_iter slot of Itype so that | Barry Warsaw | 2001-09-22 | 1 | -20/+45 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 1 | -2/+3 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -2/+3 |
|
|
* | PyLocale_setlocale(): silence compiler warning about free() of a const | Guido van Rossum | 2001-09-20 | 1 | -1/+1 |
|
|
* | Patch #435971: UTF-7 codec by Brian Quinlan. | Marc-André Lemburg | 2001-09-20 | 1 | -0/+42 |
|
|
* | Include ctype.h after Python.h. | Martin v. Löwis | 2001-09-19 | 1 | -1/+1 |
|
|
* | Patch to bug #461753: Allow None in ExternalEntityParserCreate. | Martin v. Löwis | 2001-09-19 | 1 | -1/+1 |
|
|
* | fixed #449964: sre.sub raises an exception if the template contains a | Fredrik Lundh | 2001-09-18 | 1 | -12/+16 |
|
|
* | an SRE bugfix a day keeps Guido away... | Fredrik Lundh | 2001-09-18 | 1 | -9/+14 |
|
|
* | [Patch #462255, from Jason Tishler] Re-enables building the resouce | Andrew M. Kuchling | 2001-09-17 | 1 | -1/+2 |
|
|
* | The 'p' (Pascal string) pack code acts unreasonably when the string size | Tim Peters | 2001-09-15 | 1 | -0/+2 |
|
|
* | Silence warnings about passing unsigned char** as char**. | Martin v. Löwis | 2001-09-08 | 1 | -4/+4 |
|
|
* | Patch #450702: allow threads when calling into zlib, protect usage of | Martin v. Löwis | 2001-09-07 | 1 | -114/+350 |
|
|
* | Fix compiler warnings. This closes some of the #458880 problem. | Martin v. Löwis | 2001-09-07 | 1 | -9/+8 |
|
|
* | Revert parts of patch #453627, documenting the resulting test failures | Martin v. Löwis | 2001-09-06 | 2 | -35/+3 |
|
|
* | Enable large file support on Win32 systems. | Tim Peters | 2001-09-06 | 1 | -3/+3 |
|
|
* | Rework the way we try to check for libm overflow, given that C99 no longer | Tim Peters | 2001-09-05 | 2 | -44/+15 |
|
|
* | Patch #449815: Set filesystemencoding based on CODESET. | Martin v. Löwis | 2001-09-05 | 1 | -1/+20 |
|
|
* | Patch #453627: Define the following macros when compiling on a UnixWare 7.x s... | Martin v. Löwis | 2001-09-05 | 2 | -3/+35 |
|
|
* | loghelper(): Try to nudge the compiler into doing mults in an order that | Tim Peters | 2001-09-05 | 1 | -1/+1 |
|
|
* | Return reasonable results for math.log(long) and math.log10(long) (we were | Tim Peters | 2001-09-05 | 1 | -4/+64 |
|
|
* | Mechanical fiddling to make this easier to work with in my editor. | Tim Peters | 2001-09-04 | 1 | -18/+12 |
|
|
* | [Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it should | Andrew M. Kuchling | 2001-09-04 | 1 | -1/+1 |
|
|
* | PEP 238 documented -Qwarn as warning only for classic int or long | Guido van Rossum | 2001-09-04 | 1 | -4/+8 |
|
|
* | Rename the -D option to -Q, to avoid a Jython option name conflict. | Guido van Rossum | 2001-09-04 | 1 | -7/+7 |
|
|
* | Oops. The -W option takes args, not -X. | Guido van Rossum | 2001-08-31 | 1 | -1/+1 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -19/+49 |
|
|
* | Removed unreachable return to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -2/+1 |
|
|
* | Removed an unreachable break statement to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -1/+1 |
|
|
* | gcmodule is now always compiled | Neil Schemenauer | 2001-08-30 | 1 | -3/+0 |
|
|
* | gcmodule is now enabled here | Neil Schemenauer | 2001-08-30 | 1 | -0/+6 |
|
|
* | Make more things internal to this file. Remove | Neil Schemenauer | 2001-08-30 | 1 | -93/+148 |
|
|