| Commit message (Expand) | Author | Age | Files | Lines |
* | test_linuxaudio: | Jeremy Hylton | 2000-10-06 | 1 | -86/+129 |
|
|
* | Added a new "base" type, IOobject for which most of the | Jim Fulton | 2000-10-06 | 1 | -285/+355 |
|
|
* | [ Bug #113803 ] [2.0b1 NT4.0] printing non asci char causes idle to abort | Guido van Rossum | 2000-10-06 | 1 | -44/+86 |
|
|
* | Norman Vine <nhv@users.sourceforge.net>: | Fred Drake | 2000-10-06 | 1 | -1/+1 |
|
|
* | SF "bug" 115973: patches from Norman Vine so that shared libraries and | Tim Peters | 2000-10-05 | 1 | -1/+1 |
|
|
* | - update Neil's email address | Neil Schemenauer | 2000-10-04 | 1 | -6/+2 |
|
|
* | - do not start collection during processing of an exception | Neil Schemenauer | 2000-10-04 | 1 | -1/+5 |
|
|
* | - Fix a GC bug caused by PyDict_New() failing. | Neil Schemenauer | 2000-10-04 | 1 | -1/+2 |
|
|
* | Accept keyword arguments for (most) pattern and match object | Fredrik Lundh | 2000-10-03 | 1 | -31/+45 |
|
|
* | Clarify that isatty is only guaranteed to return true for slave ends of | Thomas Wouters | 2000-10-03 | 1 | -1/+1 |
|
|
* | Fixed negative lookahead/lookbehind. Closes bug #115618. | Fredrik Lundh | 2000-10-03 | 1 | -4/+1 |
|
|
* | Remove comment about -lucb for the mmap module -- the module has been | Fred Drake | 2000-10-02 | 1 | -3/+2 |
|
|
* | Supporting rl_library_version is more trouble than it's worth -- | Guido van Rossum | 2000-10-02 | 1 | -8/+1 |
|
|
* | my_getpagesize(): New function; returns the size of a page of memory. | Fred Drake | 2000-10-01 | 1 | -12/+18 |
|
|
* | Fix header file usage so that NULL is defined. NULL is needed by | Marc-André Lemburg | 2000-09-30 | 1 | -1/+1 |
|
|
* | PyModule_AddStringConstant(): Make this static since it isn't used | Fred Drake | 2000-09-29 | 1 | -1/+5 |
|
|
* | Remove unused VERSION #define. | Martin v. Löwis | 2000-09-29 | 1 | -5/+26 |
|
|
* | Add #ifdef's for platforms that don't have the constants POLLRDNORM and | Andrew M. Kuchling | 2000-09-28 | 1 | -0/+8 |
|
|
* | Minor ANSIfication: lib_python no longer needs to be initialized | Fred Drake | 2000-09-28 | 1 | -4/+1 |
|
|
* | Fix includes; not including Python.h caused the module not to compile on | Fred Drake | 2000-09-28 | 1 | -1/+1 |
|
|
* | Fix buffer overflow vulnerabilities in calculate_path(). Code used | Jeremy Hylton | 2000-09-27 | 1 | -16/+41 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 7 | -32/+5 |
|
|
* | fix bug #114290: when interpreter's argv[0] has a relative path make | Jeremy Hylton | 2000-09-25 | 1 | -2/+19 |
|
|
* | Add missing prototypes for the benefit of SunOS 4.1.4 */ | Guido van Rossum | 2000-09-25 | 1 | -0/+7 |
|
|
* | For the benefit of SunOS 4.1.4, define MS_SYNC as 0 when it's | Guido van Rossum | 2000-09-25 | 1 | -0/+6 |
|
|
* | unicode database compression, step 2: | Fredrik Lundh | 2000-09-25 | 4 | -4313/+4564 |
|
|
* | Repaired damaged string. | Tim Peters | 2000-09-24 | 1 | -1/+1 |
|
|
* | xmlparse_ExternalEntityParserCreate(): Add required cast to return to | Fred Drake | 2000-09-24 | 1 | -1/+1 |
|
|
* | unicode database compression, step 1: | Fredrik Lundh | 2000-09-24 | 1 | -11/+1 |
|
|
* | unicode database compression, step 1: | Fredrik Lundh | 2000-09-24 | 3 | -65715/+4398 |
|
|
* | Added ExternalEntityParserCreate method (patch 101635). | Lars Gustäbel | 2000-09-24 | 1 | -0/+66 |
|
|
* | Change the name of the exception from "pyexpat.error" to | Fred Drake | 2000-09-23 | 1 | -12/+13 |
|
|
* | Fix some long/"l" int/"i" mismatches. Fixes bug #113779. | Neil Schemenauer | 2000-09-22 | 1 | -2/+2 |
|
|
* | It's better to test for __hpux rather than __hppa, and hpux or hppa is | Guido van Rossum | 2000-09-22 | 1 | -1/+1 |
|
|
* | Hopefully fix the problem with undeclared fdatasync() on HP-UX that | Guido van Rossum | 2000-09-22 | 1 | -0/+5 |
|
|
* | Address Bug #115057: add a --with-suffix option to set the EXE | Guido van Rossum | 2000-09-22 | 1 | -4/+4 |
|
|
* | - Add DEBUG_SAVEALL option. When enabled all garbage objects found by the | Neil Schemenauer | 2000-09-22 | 1 | -27/+39 |
|
|
* | When PyInt_FromLong() returns NULL, you do not need to check | Fred Drake | 2000-09-22 | 1 | -4/+2 |
|
|
* | Implemented new os.startfile function, unique to Windows, exposing a | Tim Peters | 2000-09-22 | 1 | -0/+33 |
|
|
* | Fix for SF bug 115051: Dodgy use of PyTuple_SET_ITEM in pyexpat.c | Tim Peters | 2000-09-22 | 1 | -2/+1 |
|
|
* | Remove debugging print. ;( | Fred Drake | 2000-09-22 | 1 | -2/+0 |
|
|
* | Added a true unicode_internal_encode function and fixed the | Marc-André Lemburg | 2000-09-21 | 1 | -9/+43 |
|
|
* | Remove memory leaks of strings/Unicode objects passed into the character | Fred Drake | 2000-09-21 | 1 | -58/+21 |
|
|
* | - fixed yet another gcc -pedantic warning | Fredrik Lundh | 2000-09-21 | 1 | -16/+47 |
|
|
* | Use PyOS_setsig() instead of signal(). Also remove redundant spaces | Guido van Rossum | 2000-09-21 | 1 | -15/+15 |
|
|
* | Add a definition of rl_library_version. Reported by jpettit@sourceforge. | Guido van Rossum | 2000-09-20 | 1 | -0/+1 |
|
|
* | Randall Hopper: Add fpectl functionality patch for FreeBSD. | Guido van Rossum | 2000-09-19 | 1 | -0/+15 |
|
|
* | Implement readlines function. Closes Bug #110686. | Martin v. Löwis | 2000-09-19 | 1 | -0/+36 |
|
|
* | Make better use of GNU Pth -- patch by Andy Dustman. | Guido van Rossum | 2000-09-19 | 1 | -0/+9 |
|
|
* | Add invert() and __invert__() as aliases for inv()/__inv__(). | Fred Drake | 2000-09-17 | 1 | -11/+16 |
|
|