summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-192-50/+53
* Fully support 32-bit codes. Enable BIGCHARSET in UCS-4 builds.Martin v. Löwis2003-04-192-11/+43
* Implement IDNA (Internationalized Domain Names in Applications).Martin v. Löwis2003-04-181-5/+25
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-171-0/+149
* - New C API PyGC_Collect(), same as calling gc.collect().Guido van Rossum2003-04-171-1/+19
* Support UCS-4 Tcl for UCS-4 Python builds. Fixes #719880.Martin v. Löwis2003-04-161-4/+8
* Minor source formatting fixes.Raymond Hettinger2003-04-161-2/+2
* Use object interface for global vars. Fixes #721171.Martin v. Löwis2003-04-151-127/+94
* The date class is now properly subclassable. (SF bug #720908)Guido van Rossum2003-04-141-5/+8
* SF patch #720991 by Gary Herron:Guido van Rossum2003-04-142-0/+61
* Fix docstring typoAndrew M. Kuchling2003-04-141-1/+1
* Make readers and writers participate in garbage collection.Jeremy Hylton2003-04-141-14/+71
* Must declare vrbls at the tops of blocks in C89 (wouldn't compile).Tim Peters2003-04-131-1/+2
* use PyModule_Add{Int,String}Constant() where appropriateSkip Montanaro2003-04-121-12/+6
* tighten up string checksSkip Montanaro2003-04-121-17/+18
* add writerows docstringSkip Montanaro2003-04-121-6/+24
* typoSkip Montanaro2003-04-111-1/+1
* typoSkip Montanaro2003-04-111-1/+1
* zap commented out bit of codeSkip Montanaro2003-04-111-2/+1
* SF patch #718867: Fix reference leak for time.strptimeRaymond Hettinger2003-04-101-1/+4
* Make Unpickler objects colletable.Jeremy Hylton2003-04-091-23/+65
* Make Picklers collectable.Jeremy Hylton2003-04-091-5/+45
* Fix two crashes on Windows:Guido van Rossum2003-04-091-2/+2
* Don't use (PyObject *)PyObject_Type(x). It is a leaky and verbose wayGuido van Rossum2003-04-091-2/+2
* tentative fix for #712322: modification time stamp checking failedJust van Rossum2003-04-081-1/+1
* s/referrents/referents/g. Gotta love that referrers remains rife with rs.Tim Peters2003-04-081-8/+8
* Finished implementing gc.get_referrents(): dealt with error and endTim Peters2003-04-081-6/+15
* Comment repair; no semantic changes.Tim Peters2003-04-071-4/+5
* Reworked has_finalizer() to use the new _PyObject_Lookup() insteadTim Peters2003-04-071-73/+45
* initgc(): Rewrote to use the PyModule_AddXYZ API; cuts code size.Tim Peters2003-04-061-17/+14
* handle_finalizers(): Rewrote to call append_objects() and gc_list_merge()Tim Peters2003-04-061-36/+31
* Switched from METH_VARARGS to METH_NOARGS for the 7 module functions thatTim Peters2003-04-061-44/+17
* Reworked move_finalizer_reachable() to create two distinct lists:Tim Peters2003-04-061-31/+57
* move_finalizers(): Rewrote. It's not necessary for this routineTim Peters2003-04-051-29/+20
* New comments. Rewrote has_finalizer() as a sequence of ifs instead ofTim Peters2003-04-051-6/+21
* Fixed new seemingly random segfaults, by moving the initialization ofTim Peters2003-04-051-8/+11
* Fix Tim's boom example.Jeremy Hylton2003-04-041-20/+54
* Use fcntl() to put the audio device *back* into blocking mode afterGreg Ward2003-04-041-0/+9
* Add get_referrents() helper function.Jeremy Hylton2003-04-031-1/+1
* Add get_referrents() helper function.Jeremy Hylton2003-04-031-1/+32
* Revert Patch #670715: iconv support.Martin v. Löwis2003-04-032-727/+0
* init_bsddb(): Added a few symbols that Greg forgot.Barry Warsaw2003-03-311-1/+4
* SF patch #667548, Add some audio constants by Michael PruettNeal Norwitz2003-03-301-3/+25
* Get build working with pre-C99 compilersNeal Norwitz2003-03-301-1/+1
* Patch #650412: Check whether the address of flock and getpagesizeMartin v. Löwis2003-03-301-1/+13
* Patch #672053: Return a result from Py_Main, instead of exiting.Martin v. Löwis2003-03-301-9/+9
* Patch #695250: Suppress COPYRIGHT if site.py is not read. Fixes #672614.Martin v. Löwis2003-03-301-3/+6
* Wrap thread stuff in WITH_THREAD. Fixes #704641.Martin v. Löwis2003-03-301-3/+23
* Fake bool API for Python 2.2.Martin v. Löwis2003-03-301-0/+5
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-297-42/+42