| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Move the dbm module around and add an introductory paragraph for dbm, | Guido van Rossum | 1997-12-11 | 1 | -3/+12 |
| | | | | | gdbm and bsddb, as suggested by Skip Montanaro. | ||||
| * | Remove "Lib/test" from the default path; this is now a package! | Guido van Rossum | 1997-12-10 | 1 | -1/+0 |
| | | |||||
| * | The 'l' flag (locale specific matching) has been renamed to 'L'. | Guido van Rossum | 1997-12-10 | 1 | -2/+2 |
| | | |||||
| * | Add a test for a bad format character. | Guido van Rossum | 1997-12-09 | 1 | -0/+16 |
| | | |||||
| * | Typo: RUSAGE_CHILDERN -> RUSAGE_CHILDREN. | Guido van Rossum | 1997-12-09 | 1 | -1/+1 |
| | | |||||
| * | LC_MESSAGES is not defined on all systems; use #ifdef LC_MESSAGES. | Guido van Rossum | 1997-12-09 | 1 | -0/+2 |
| | | |||||
| * | (1) call mktime() just before strftime(); it normalizes the buffer and | Guido van Rossum | 1997-12-08 | 1 | -0/+8 |
| | | | | | | | may set the timezone name for BSD systems... (2) fake all of the timezone variables for the mac. | ||||
| * | New pcre version from AMK | Guido van Rossum | 1997-12-08 | 4 | -1209/+1797 |
| | | |||||
| * | Jim Fulton: | Guido van Rossum | 1997-12-08 | 1 | -24/+50 |
| | | | | | | | | | | | | | | | | | | | | | | | - Loading non-binary string pickles checks for insecure strings. This is needed because cPickle (still) uses a restricted eval to parse non-binary string pickles. This change is needed to prevent untrusted pickles like:: "S'hello world'*2000000\012p0\012." from hosing an application. - User-defined types can now support unpickling without executing a constructor. The second value returned from __reduce__ can now be None, rather than an argument tuple. On unpickling, if the second value returned from __reduce__ during pickling was None, then rather than calling the first value returned from __reduce__, directly, the __basicnew__ method of the first value returned from __reduce__ is called without arguments. | ||||
| * | Another large batch of patches from Jeff Rush for OS/2. | Guido van Rossum | 1997-12-05 | 1 | -15/+243 |
| | | | | | I hope this time I've taken out all // comments and indended #ifdefs. | ||||
| * | Two changes by Jeff Rush (slightly tweaked): | Guido van Rossum | 1997-12-05 | 1 | -9/+26 |
| | | | | | | | | | | | | - New option -x, to skip first line of script - Use the correct platform-specific delimiter and library location in the usage message (Also removed two blank lines and moved one line around so that each part of the usage message is again under 512 bytes and the whole usage message still fits in 23 lines.) | ||||
| * | New versions of cPickle and cStringIO, from Jim Fulton's cPickle 1.0b1 | Guido van Rossum | 1997-12-04 | 2 | -345/+648 |
| | | | | | distribution. | ||||
| * | Moved the thread module to its own Setup.thread(.in) file, | Guido van Rossum | 1997-12-04 | 3 | -7/+16 |
| | | | | | | which is edited by the config.status script depending on whether --with-thread is specified or not. Also needs changes to configure(.in). | ||||
| * | Patches by Fred Lundh to make it compile better with K&R compilers. | Guido van Rossum | 1997-12-02 | 1 | -20/+20 |
| | | | | | | (Should really let AMK do this, but don't know when he'll give me a new version.) | ||||
| * | Small bugfixes for broken old style use of the syntax table. AMK, of | Guido van Rossum | 1997-12-02 | 1 | -6/+6 |
| | | | | | course. | ||||
| * | Yes, Virginia, Tix does have a Tix_SafeInit() function. | Guido van Rossum | 1997-12-02 | 1 | -5/+5 |
| | | |||||
| * | Understand -Xlinker option. | Guido van Rossum | 1997-12-02 | 1 | -0/+1 |
| | | |||||
| * | Left-aligned preprocessor directives and changed C++ comments to C | Guido van Rossum | 1997-12-02 | 1 | -9/+9 |
| | | | | | comments. | ||||
| * | Patch for QNX, by Chris Herborth. Also left-aligned preprocessor | Guido van Rossum | 1997-12-02 | 1 | -58/+58 |
| | | | | | directives and changed C++ comments to C comments. | ||||
| * | Patch for QNX, by Chris Herborth. | Guido van Rossum | 1997-12-02 | 1 | -5/+5 |
| | | |||||
| * | Changed the occurrence of *shared* in the example so people won't | Guido van Rossum | 1997-12-02 | 1 | -13/+10 |
| | | | | | accidentally uncomment it... | ||||
| * | Comment out crypt by default; it's not used very much and messes up | Guido van Rossum | 1997-12-02 | 1 | -6/+8 |
| | | | | | | | | the default build on Linux (because it requires -lcrypt which isn't availabel everywhere). Some improvements to the _tkinter build line suggested by Case Roole. | ||||
| * | split_whitespace(): Make sure delimiter is stripped from the beginning | Barry Warsaw | 1997-12-02 | 1 | -1/+4 |
| | | | | | | of the remainder item (last item in list) when maxsplit is < the number of occurrences. | ||||
| * | Initialize __version__ to the correct version string regardless of | Guido van Rossum | 1997-12-01 | 1 | -3/+14 |
| | | | | | | what RCS checkout options are used. Problem first diagnosed by Marc Lemburg. | ||||
| * | mymemreplace(), strop_replace(): Add support for optional 4th argument | Barry Warsaw | 1997-11-29 | 1 | -4/+12 |
| | | | | | | | | | maxsplit which is implemented in string.py but wasn't here. The reference manual doesn't define what happens when maxsplit is negative or larger than the number of occurrences, but in either case, I implemented this as all get replaced. Default value is zero which replaces all occurrences. | ||||
| * | os2 patch by Jeff Rush | Guido van Rossum | 1997-11-22 | 5 | -21/+399 |
| | | |||||
| * | Redone the _tkinter configuration section with support for popular packages. | Guido van Rossum | 1997-11-22 | 1 | -15/+41 |
| | | |||||
| * | New tkappinit supporting several popular packages. | Guido van Rossum | 1997-11-22 | 1 | -15/+36 |
| | | |||||
| * | PySocketSock_methods: Added "connect_ex" so the method can actually be | Barry Warsaw | 1997-11-20 | 1 | -0/+1 |
| | | | | | called! | ||||
| * | Add support for _locale. | Guido van Rossum | 1997-11-19 | 1 | -0/+2 |
| | | |||||
| * | Add s.connect_ex() which returns errno instead of raising an exception. | Guido van Rossum | 1997-11-19 | 1 | -0/+20 |
| | | |||||
| * | Add optional support fort Tix and BLT. | Guido van Rossum | 1997-11-19 | 1 | -0/+19 |
| | | |||||
| * | Martin von Loewis' _locale module (locale.py follows tomorrow). | Guido van Rossum | 1997-11-18 | 1 | -0/+355 |
| | | |||||
| * | This fix (across 4 files in 3 directories) solves a subtle problem with | Guido van Rossum | 1997-11-14 | 2 | -0/+10 |
| | | | | | | | | | | | | | | | | signal handlers in a fork()ed child process when Python is compiled with thread support. The bug was reported by Scott <scott@chronis.icgroup.com>. What happens is that after a fork(), the variables used by the signal module to determine whether this is the main thread or not are bogus, and it decides that no thread is the main thread, so no signals will be delivered. The solution is the addition of PyOS_AfterFork(), which fixes the signal module's variables. A dummy version of the function is present in the intrcheck.c source file which is linked when the signal module is not used. | ||||
| * | Got rid of the errorstr dictionary, which is redundant now that | Guido van Rossum | 1997-11-04 | 1 | -21/+9 |
| | | | | | there's os.strerror() -- also, it would form a locale liability. | ||||
| * | Fix due to Bill Noon for problem discovered by Ken Manheimer: packing | Guido van Rossum | 1997-11-04 | 1 | -2/+2 |
| | | | | | 0.0 as float or double would yield the representation for 1.0! | ||||
| * | Move the Py_{{BEGIN,END}_ALLOW,BLOCK}_THREADS macros in time_sleep() | Guido van Rossum | 1997-11-03 | 1 | -7/+15 |
| | | | | | | | to inside floatsleep(). This is necessary because floatsleep() does the error handling and it must have grabbed the interpreter lock and thread state before it can do so. | ||||
| * | Change the signal finialization so that it also resets the signal | Guido van Rossum | 1997-11-03 | 1 | -1/+7 |
| | | | | | | handlers. After this has been called, our signal handlers are no longer active! | ||||
| * | Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov) | Guido van Rossum | 1997-10-31 | 1 | -2/+2 |
| | | |||||
| * | Take out the setlocale() call. It affects atof() and will break | Guido van Rossum | 1997-10-31 | 1 | -8/+0 |
| | | | | | floating point literals. Need to do this differently... | ||||
| * | Add #include "mytime.h", needed for SunOS 4.1 (Matthias Klose). | Guido van Rossum | 1997-10-31 | 1 | -0/+1 |
| | | |||||
| * | Forgot to add .cxx and .cpp to the second case statement. | Guido van Rossum | 1997-10-21 | 1 | -0/+2 |
| | | | | | Thanks to Daniel Larsson. | ||||
| * | Some patches to Lee Busby's fpectl mods that accidentally didn't make it | Guido van Rossum | 1997-10-20 | 1 | -3/+2 |
| | | | | | into 1.5a4. | ||||
| * | Add getintarg(), getlongarg(), getstrarg() to macros since these no | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | | | | | longer exist in the general headers. | ||||
| * | Add proper (getattrfunc) cast in Pcre_Type. | Guido van Rossum | 1997-10-20 | 1 | -1/+1 |
| | | |||||
| * | Change sharedmodules to lib-dynload. | Guido van Rossum | 1997-10-20 | 2 | -7/+7 |
| | | | | | ### If you still have sharedmodules in your Modules/Setup file, remove it! ### | ||||
| * | Darn. When thread support is disabled, the BEGIN/END macros don't | Guido van Rossum | 1997-10-10 | 2 | -4/+8 |
| | | | | | | | save and restore the tstate, but explicitly calling PyEval_SaveThread() does reset it! While I think about how to fix this for real, here's a fix that avoids getting a fatal error. | ||||
| * | Don Beaudry's changes to support SGI_ABI on Irix 6.x. | Guido van Rossum | 1997-10-09 | 1 | -0/+2 |
| | | |||||
| * | Remove requirement for strdup() since it causes so many troubles for too many | Fred Drake | 1997-10-09 | 1 | -4/+4 |
| | | | | | platforms. Argh! | ||||
| * | Add call to setlocale(LC_ALL, ""). | Guido van Rossum | 1997-10-08 | 1 | -1/+8 |
| | | |||||
