summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-1218-66/+0
* Fixed "u#" parser marker to pass through Unicode objects as-is withoutMarc-André Lemburg2002-01-091-0/+50
* Patch #497126: Always compile dl.Martin v. Löwis2002-01-011-7/+7
* Add fcntl.h constants from glibc 2.2.4. Fixes #496171.Martin v. Löwis2001-12-281-0/+70
* Due to a cut-and-paste error, the type object exported under the nameGuido van Rossum2001-12-271-1/+1
* Add TCP socket options from glibc 2.2.4. Fixes #495680.Martin v. Löwis2001-12-221-0/+31
* Merge of the release22 branch changes back into the trunk.Barry Warsaw2001-12-211-3/+5
* SF bug #495021: Crash calling os.stat with a trailing backslashTim Peters2001-12-191-14/+20
* save(): Fix for SF bug #494904: Cannot pickle a class with aGuido van Rossum2001-12-191-0/+5
* SF bug #494738: binascii_b2a_base64 overwrites memory.Tim Peters2001-12-191-3/+5
* initxxsubtype(): Add a comment to make the magic clearer; I doubt it'sTim Peters2001-12-171-2/+4
* Use PyType_Ready() for initialization of the ob_type field of ourGuido van Rossum2001-12-171-2/+4
* David Abrahams tried to compile this as a separate DLL under MSVC, andTim Peters2001-12-171-4/+21
* Give xxsubtype a module docstring, so its oddball purpose is discoverableTim Peters2001-12-101-2/+8
* Mods by Tony Lownds (patch 490100, slightly massaged by me) to make TkinterJack Jansen2001-12-092-1/+74
* bug #133283, #477728, #483789, #490573Fredrik Lundh2001-12-091-19/+11
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-0834-44/+46
* SF patch #489989 (Charles G Waldman) linuxaudiodev.c - fix initializationGuido van Rossum2001-12-081-9/+8
* SF patch #489173: Make os.spawnv not block the interpreter, fromTim Peters2001-12-071-3/+10
* O_cwrite(): rewrote for clarity, replacing all the (Oobject *)selfGuido van Rossum2001-12-071-16/+17
* Fix for #489672 (Neil Norwitz): memory leak in test_sre.Guido van Rossum2001-12-071-1/+4
* audioop_ratecv() again: settle for a sloppier upper bound that's lessTim Peters2001-12-071-34/+19
* Undefine addrinfo.h constants if the system header defined them.Martin v. Löwis2001-12-061-4/+35
* Fix [ #489673 ] memory leak in test_symtable: Free the st_future slot.Jeremy Hylton2001-12-061-0/+1
* SF bug #488514: -Qnew needs workTim Peters2001-12-061-1/+4
* audioop_ratecv(): I left a potentially unsafe multiply uncheckedTim Peters2001-12-051-15/+15
* Fix memory leak in the parser module: There were two leaks inFred Drake2001-12-051-5/+22
* SF bug 482574: audioop.ratecv crashes.Tim Peters2001-12-051-6/+62
* Make sure to propogate errors that arise when profiling data cannot beFred Drake2001-12-041-71/+112
* More sprintf -> PyOS_snprintf.Tim Peters2001-12-041-2/+3
* posix_execve(), posix_spawnve(), posix_putenv():Tim Peters2001-12-031-6/+14
* Changed logic for finding python home in Mac OS X framework Pythons.Jack Jansen2001-12-021-47/+45
* Check for NULL return value of PyList_New (follow-up to patch #486743).Martin v. Löwis2001-12-021-0/+3
* Patch #481718: Time module doc string changes.Martin v. Löwis2001-12-021-2/+4
* Patch #486743: remove bad INCREF, propagate exception in append_objects.Martin v. Löwis2001-12-021-6/+11
* Remove INET6 define. Use ENABLE_IPV6 instead.Martin v. Löwis2001-12-023-33/+33
* unicodedata_decomposition(): sprintf -> PyOS_snprintf.Tim Peters2001-11-301-2/+4
* Use identity instead of equality when looking for referrers. Fixes #485781.Martin v. Löwis2001-11-291-3/+4
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-284-7/+11
* Use PyOS_snprintf() instead of sprintf().Jeremy Hylton2001-11-281-4/+4
* Repair a botched PyOS_snprintf conversion.Tim Peters2001-11-281-1/+1
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-2813-36/+50
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-283-4/+4
* Fix docstring typoAndrew M. Kuchling2001-11-281-1/+1
* Correct typo. Fixes #484611.Martin v. Löwis2001-11-241-1/+1
* Rename get_referents to get_referrers. Fixes #483815.Martin v. Löwis2001-11-241-12/+12
* Test for negative buffer sizes. Fixes #482871.Martin v. Löwis2001-11-191-0/+5
* assert.h was not always included by Python.h; make sure we import it forFred Drake2001-11-181-0/+3
* A change to sync with pickle.py:Barry Warsaw2001-11-151-8/+0
* CVS patch #477161: New "access" keyword for mmap, from Jay T Miller.Tim Peters2001-11-131-69/+166