| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick | Tim Peters | 2004-10-11 | 1 | -0/+1 |
|
|
* | SF patch #1035498: -m option to run a module as a script | Raymond Hettinger | 2004-10-07 | 1 | -0/+4 |
|
|
* | Finalize the freelist of list objects. | Raymond Hettinger | 2004-10-07 | 1 | -0/+1 |
|
|
* | Introduced a Py_IS_NAN macro, which probably works on the major platforms | Tim Peters | 2004-09-23 | 1 | -2/+17 |
|
|
* | A static swapped_op[] array was defined in 3 different C files, & I think | Tim Peters | 2004-09-23 | 1 | -0/+5 |
|
|
* | Removed redundant declaration of _PyLong_NumBits(). | Tim Peters | 2004-09-23 | 1 | -1/+0 |
|
|
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -0/+21 |
|
|
* | SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes | Raymond Hettinger | 2004-09-01 | 1 | -1/+1 |
|
|
* | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 1 | -49/+53 |
|
|
* | onward and upward | Anthony Baxter | 2004-08-31 | 1 | -2/+2 |
|
|
* | SF patch 936813: fast modular exponentiation | Tim Peters | 2004-08-30 | 1 | -1/+6 |
|
|
* | SF patch 936813: fast modular exponentiation | Tim Peters | 2004-08-29 | 1 | -1/+1 |
|
|
* | Stop producing or using OverflowWarning. PEP 237 thought this would | Tim Peters | 2004-08-25 | 1 | -0/+1 |
|
|
* | Patch #900727: Add Py_InitializeEx to allow embedding without signals. | Martin v. Löwis | 2004-08-19 | 1 | -0/+1 |
|
|
* | Patch #1006003: Cygwin standard module build problems | Jason Tishler | 2004-08-09 | 2 | -3/+4 |
|
|
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 1 | -18/+0 |
|
|
* | Add a workaround for a problem that UTF-8 strings can be corrupted | Hye-Shik Chang | 2004-08-04 | 1 | -0/+33 |
|
|
* | on to a2! | Anthony Baxter | 2004-08-03 | 1 | -2/+2 |
|
|
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 3 | -72/+77 |
|
|
* | Fix typo in comment | Neal Norwitz | 2004-08-01 | 1 | -1/+1 |
|
|
* | * drop the unreasonable list invariant that ob_item should never come back | Armin Rigo | 2004-07-29 | 1 | -3/+1 |
|
|
* | Fix obscure breakage (relative to 2.3) in listsort: the test for list | Tim Peters | 2004-07-29 | 1 | -0/+3 |
|
|
* | Document what the members of PyListObject are used for, and the crucial | Tim Peters | 2004-07-29 | 1 | -0/+9 |
|
|
* | Use intptr_t/uintptr_t on Windows | Martin v. Löwis | 2004-07-27 | 1 | -0/+5 |
|
|
* | SF bug 994255: Py_RETURN_NONE causes too much warnings | Tim Peters | 2004-07-22 | 2 | -3/+3 |
|
|
* | Moved SunPro warning suppression into pyport.h and out of individual | Nicholas Bastin | 2004-07-15 | 1 | -0/+7 |
|
|
* | Moved PyMac_GetScript() to _localemodule, which is the only place where | Jack Jansen | 2004-07-15 | 1 | -1/+0 |
|
|
* | Formalize that the Py_VISIT macro requires that the tp_traverse | Tim Peters | 2004-07-15 | 1 | -1/+5 |
|
|
* | Documented the new Py_VISIT macro to simplify implementation of | Jim Fulton | 2004-07-14 | 1 | -0/+10 |
|
|
* | Implemented a new Py_CLEAR macro. This macro should be used when | Jim Fulton | 2004-07-14 | 1 | -0/+9 |
|
|
* | Add PyArg_VaParseTupleAndKeywords(). Document this function and | Brett Cannon | 2004-07-10 | 1 | -0/+2 |
|
|
* | post-release fun | Anthony Baxter | 2004-07-09 | 1 | -1/+1 |
|
|
* | Allow string and unicode return types from .encode()/.decode() | Marc-André Lemburg | 2004-07-08 | 1 | -0/+11 |
|
|
* | bump the version number for 2.4a1 | Fred Drake | 2004-07-08 | 1 | -2/+2 |
|
|
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 1 | -1/+6 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -1/+1 |
|
|
* | Add missing backslash for PyDateTimeAPI->Delta_FromDelta() macro. | Brett Cannon | 2004-06-28 | 1 | -1/+1 |
|
|
* | Patch #923098: Share interned strings in marshal. | Martin v. Löwis | 2004-06-27 | 1 | -3/+5 |
|
|
* | Patch #966493: Cleanup generator/eval_frame exposure. | Martin v. Löwis | 2004-06-27 | 3 | -3/+6 |
|
|
* | Install two code generation optimizations that depend on NOP. | Raymond Hettinger | 2004-06-21 | 1 | -0/+1 |
|
|
* | SF patch 876130: add C API to datetime module, from Anthony Tuininga. | Tim Peters | 2004-06-20 | 1 | -0/+95 |
|
|
* | Bug 975996: Add _PyTime_DoubleToTimet to C API | Tim Peters | 2004-06-20 | 1 | -0/+23 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 2 | -0/+20 |
|
|
* | Patch #510695: Add TSC profiling for the VM. | Martin v. Löwis | 2004-06-08 | 1 | -0/+3 |
|
|
* | - SF #962502: Add two more methods for unicode type; width() and | Hye-Shik Chang | 2004-06-02 | 1 | -0/+18 |
|
|
* | Patch #957398: Add public API for Generator Object/Type. | Martin v. Löwis | 2004-06-01 | 2 | -0/+34 |
|
|
* | Add weakref support to array.array and file objects. | Raymond Hettinger | 2004-05-31 | 1 | -0/+1 |
|
|
* | Make sets and deques weak referencable. | Raymond Hettinger | 2004-05-30 | 1 | -0/+1 |
|
|
* | SF patch #872326: Generator expression implementation | Raymond Hettinger | 2004-05-19 | 2 | -18/+25 |
|
|
* | Two new public API functions, Py_IncRef and Py_DecRef. Useful for | Thomas Heller | 2004-04-22 | 1 | -0/+7 |
|
|