summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* PyModule_AddStringConstant(): Make this static since it isn't usedFred Drake2000-09-291-1/+5
* Remove unused VERSION #define.Martin v. Löwis2000-09-291-5/+26
* Add #ifdef's for platforms that don't have the constants POLLRDNORM andAndrew M. Kuchling2000-09-281-0/+8
* Minor ANSIfication: lib_python no longer needs to be initializedFred Drake2000-09-281-4/+1
* Fix includes; not including Python.h caused the module not to compile onFred Drake2000-09-281-1/+1
* Fix buffer overflow vulnerabilities in calculate_path(). Code usedJeremy Hylton2000-09-271-16/+41
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-267-32/+5
* fix bug #114290: when interpreter's argv[0] has a relative path makeJeremy Hylton2000-09-251-2/+19
* Add missing prototypes for the benefit of SunOS 4.1.4 */Guido van Rossum2000-09-251-0/+7
* For the benefit of SunOS 4.1.4, define MS_SYNC as 0 when it'sGuido van Rossum2000-09-251-0/+6
* unicode database compression, step 2:Fredrik Lundh2000-09-254-4313/+4564
* Repaired damaged string.Tim Peters2000-09-241-1/+1
* xmlparse_ExternalEntityParserCreate(): Add required cast to return toFred Drake2000-09-241-1/+1
* unicode database compression, step 1:Fredrik Lundh2000-09-241-11/+1
* unicode database compression, step 1:Fredrik Lundh2000-09-243-65715/+4398
* Added ExternalEntityParserCreate method (patch 101635).Lars Gustäbel2000-09-241-0/+66
* Change the name of the exception from "pyexpat.error" toFred Drake2000-09-231-12/+13
* Fix some long/"l" int/"i" mismatches. Fixes bug #113779.Neil Schemenauer2000-09-221-2/+2
* It's better to test for __hpux rather than __hppa, and hpux or hppa isGuido van Rossum2000-09-221-1/+1
* Hopefully fix the problem with undeclared fdatasync() on HP-UX thatGuido van Rossum2000-09-221-0/+5
* Address Bug #115057: add a --with-suffix option to set the EXEGuido van Rossum2000-09-221-4/+4
* - Add DEBUG_SAVEALL option. When enabled all garbage objects found by theNeil Schemenauer2000-09-221-27/+39
* When PyInt_FromLong() returns NULL, you do not need to checkFred Drake2000-09-221-4/+2
* Implemented new os.startfile function, unique to Windows, exposing aTim Peters2000-09-221-0/+33
* Fix for SF bug 115051: Dodgy use of PyTuple_SET_ITEM in pyexpat.cTim Peters2000-09-221-2/+1
* Remove debugging print. ;(Fred Drake2000-09-221-2/+0
* Added a true unicode_internal_encode function and fixed theMarc-André Lemburg2000-09-211-9/+43
* Remove memory leaks of strings/Unicode objects passed into the characterFred Drake2000-09-211-58/+21
* - fixed yet another gcc -pedantic warningFredrik Lundh2000-09-211-16/+47
* Use PyOS_setsig() instead of signal(). Also remove redundant spacesGuido van Rossum2000-09-211-15/+15
* Add a definition of rl_library_version. Reported by jpettit@sourceforge.Guido van Rossum2000-09-201-0/+1
* Randall Hopper: Add fpectl functionality patch for FreeBSD.Guido van Rossum2000-09-191-0/+15
* Implement readlines function. Closes Bug #110686.Martin v. Löwis2000-09-191-0/+36
* Make better use of GNU Pth -- patch by Andy Dustman.Guido van Rossum2000-09-191-0/+9
* Add invert() and __invert__() as aliases for inv()/__inv__().Fred Drake2000-09-171-11/+16
* arraymodule: Fix SF bug 113960.Tim Peters2000-09-161-18/+23
* Use PyOS_setsig() instead of directly calling signal() or sigaction().Guido van Rossum2000-09-161-5/+12
* Use typedef PyOS_sighandler_t and APIs PyOS_getsig() andGuido van Rossum2000-09-161-25/+12
* Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.Tim Peters2000-09-161-1/+2
* Add a constant "library" to the module which names the library used,Fred Drake2000-09-151-10/+80
* Some systems need -lucb to compile the mmap module. Add a comment toFred Drake2000-09-151-1/+4
* Py_Main(), usage(), usage_mid: Add -h and -V flags to print the usageBarry Warsaw2000-09-151-8/+32
* Use symbolic constants for allowable short ranges.Martin v. Löwis2000-09-151-4/+7
* Closes SF bug 113894: on Windows, things like os.listdir("k:") andTim Peters2000-09-151-9/+7
* Check range for bytes and shorts. Closes bug #110845.Martin v. Löwis2000-09-151-2/+42
* Trent Mick points out that the BSD DB also provides an ndbm compatibilityFred Drake2000-09-151-0/+2
* Use the configure support to determine which ndbm.h header to include.Fred Drake2000-09-141-0/+10
* Add several dl.RTLD_ constants. Closes bug 110842.Martin v. Löwis2000-09-131-2/+38
* Simplify some of the code. Use PyErr_Format() instead of sprintf(), etc.Fred Drake2000-09-121-186/+122
* General cleanup in preparation for a bugfix: removed unused code, uselessTim Peters2000-09-101-65/+27