Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New version by Sjoerd, with support for IRIX 6 audio library. | Guido van Rossum | 1997-04-03 | 1 | -340/+3035 |
| | |||||
* | Added replace() implementation by Perry Stoll (debugged and reformatted by me). | Guido van Rossum | 1997-04-02 | 1 | -1/+167 |
| | |||||
* | Win32 precision clock() -- Mark Hammond. | Guido van Rossum | 1997-04-02 | 1 | -1/+44 |
| | |||||
* | Support include statement :-( | Guido van Rossum | 1997-04-02 | 1 | -0/+1 |
| | |||||
* | Support assert stmt. | Guido van Rossum | 1997-04-02 | 1 | -1/+32 |
| | |||||
* | remove ConflictError | Guido van Rossum | 1997-03-31 | 1 | -1/+0 |
| | |||||
* | As per GvR recomendation, added support for a 'sync' attribute for the | Roger E. Masse | 1997-03-25 | 1 | -0/+18 |
| | | | | GDBM module. | ||||
* | New form of PyFPE_END_PROTECT macro. | Guido van Rossum | 1997-03-14 | 6 | -13/+13 |
| | |||||
* | Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined. | Guido van Rossum | 1997-03-14 | 1 | -0/+1 |
| | |||||
* | Add optional 4th argument to [r]find and [r]index (end of slice). | Guido van Rossum | 1997-03-14 | 1 | -9/+27 |
| | |||||
* | Add Emacs shell-script directive, SunPro version#, and fix typo | Guido van Rossum | 1997-03-04 | 1 | -2/+3 |
| | |||||
* | Solaris and IRIX specific instructions for fpectl. | Guido van Rossum | 1997-03-04 | 1 | -2/+14 |
| | |||||
* | Add -O option which sets Py_OptimizeFlag to avoid emitting SET_LINENO. | Guido van Rossum | 1997-03-03 | 1 | -2/+7 |
| | | | | | Fred: sorry, I hadn't checked these changes in. This should fix your tracebacks! | ||||
* | Change all three fopen calls to use binary mode. | Guido van Rossum | 1997-02-21 | 1 | -3/+3 |
| | |||||
* | Lee's next version. Careful: this now dumps core for me on SGI IRIX 5.3. | Guido van Rossum | 1997-02-21 | 1 | -118/+76 |
| | | | | Lee is wondering whether to withdraw his patchs. Sigh. | ||||
* | regex_get_syntax(): New module function exported to Python. | Barry Warsaw | 1997-02-18 | 1 | -0/+12 |
| | |||||
* | Add fpectl and fpetest modules. | Guido van Rossum | 1997-02-14 | 1 | -0/+7 |
| | |||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 8 | -1/+492 |
| | | | | | Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros. | ||||
* | Add parentheses around && within || as gcc -Wall advises. | Guido van Rossum | 1997-02-14 | 1 | -1/+1 |
| | |||||
* | My version of Lee Busby's patches to make '-i' pretend stdin is a tty | Guido van Rossum | 1997-02-14 | 1 | -22/+35 |
| | | | | | | | | | | | | | | | even if it isn't. Changes: - set the global flag Py_InteractiveFlag when -i is given - call Py_FdIsInteractive() instead of isatty() - make stdin unbuffered, too, when using -u - make stdin and stdout line buffered, when stdin is interactive and not -u Note that setting the environment variable PYTHONINSPECT does not have these extra effects of -i. (Should it?) Unlike Lee's changes, I don't set change the prompt to go to stderr when -i is given. | ||||
* | Added .cxx and .cpp to extensions recognized as source files. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
| | |||||
* | djgpp fix (SIGMAX). | Guido van Rossum | 1997-02-14 | 1 | -0/+4 |
| | |||||
* | Issue a more meaningful error if strftime keeps returning a NULL pointer. | Guido van Rossum | 1997-02-14 | 1 | -2/+5 |
| | | | | Run the loop up to and including 8k. | ||||
* | Changes by Sjoerd (reformatted). | Guido van Rossum | 1997-02-14 | 1 | -95/+106 |
| | | | | | | | add(): better handling of overflow (substitute maxval instead of throwing away higher order bits). ratecv(): some bugfixes, Sjoerd says. | ||||
* | posix_execve(): Accept any mapping protocol object for the env | Barry Warsaw | 1997-01-29 | 1 | -7/+18 |
| | | | | argument, not hardwired to a dictionary. | ||||
* | Change bsddbmodule.o -> bsddbmodule.c. | Guido van Rossum | 1997-01-28 | 1 | -1/+1 |
| | |||||
* | Added LDLAST variable, substituted by configure script, for the final | Guido van Rossum | 1997-01-28 | 1 | -1/+2 |
| | | | | argument to the linker (required for DEC Alpha threads). | ||||
* | Two more arguments to newcodeobject -- first lineno and lineno table. | Guido van Rossum | 1997-01-24 | 1 | -4/+7 |
| | |||||
* | Initialize the ob_type field of PyAST_Type dynamically (in | Guido van Rossum | 1997-01-23 | 1 | -3/+7 |
| | | | | | | | | | initparser()) instead of statically (in the initializer). The static initialization, using the address of an object in a different DLL, is too much for the Microsoft VC++ compiler, and we want to be able to build this module as a separate DLL (it's nice to have but we don't want to increase the core DLL's size by 25K). This same trick has been applied to a number of modules, e.g. NumPy and _tkinter. | ||||
* | Bump install version to 1.5. | Guido van Rossum | 1997-01-22 | 1 | -1/+1 |
| | |||||
* | Arrange for PyErr_CheckSignals() to be called via Py_AddPendingCall(). | Guido van Rossum | 1997-01-21 | 1 | -1/+3 |
| | | | | | This avoids having to call sigcheck() (the same routine by its old name :-) in the ticker code in ceval.c's main interpreter loop. | ||||
* | work build# into version string | Guido van Rossum | 1997-01-20 | 2 | -2/+39 |
| | |||||
* | Fix the _setmode() patch for MS_WINDOWS: include <fcntl.h> and use | Guido van Rossum | 1997-01-17 | 1 | -2/+6 |
| | | | | fileno(std*). | ||||
* | Add stacksize argument to new.code(). | Guido van Rossum | 1997-01-17 | 1 | -5/+6 |
| | |||||
* | Added Sjoerd's submitted 'ratecv' method. Made corrections for new names. | Roger E. Masse | 1997-01-17 | 1 | -25/+140 |
| | | | | Reindented. | ||||
* | Renamed, but not tested. Guido will you try your test script on this? | Roger E. Masse | 1997-01-17 | 1 | -95/+94 |
| | |||||
* | Renamed. | Roger E. Masse | 1997-01-17 | 1 | -530/+584 |
| | |||||
* | (puremodule.c): New module which exports the Purify and Quantify C API | Barry Warsaw | 1997-01-17 | 3 | -4/+1169 |
| | | | | | | | | | | | to Python. Minimal documentation is included in comments at the top of the file, and in the Misc/PURIFY.README file. Note that this module must be statically linked since Pure doesn't provide shared stubs libraries. (Setup.in): Added commented template for pure module (syslogmodule.c): ins() function wasn't declared static. | ||||
* | Already renamed. Indented. | Roger E. Masse | 1997-01-16 | 1 | -471/+513 |
| | |||||
* | Renamed. | Roger E. Masse | 1997-01-16 | 1 | -79/+88 |
| | |||||
* | set_key(): Use Py_CHARMASK macro to get the character from the array | Barry Warsaw | 1997-01-16 | 1 | -237/+43 |
| | | | | | | | | unsigned. This fixes the 8bit-char-in-key platform incompatibility. I also removed the old backwards compatibility code, and the commented lisp rotor code. I retained the lisp docstrings as comments preceding each function. | ||||
* | reformatted | Barry Warsaw | 1997-01-16 | 1 | -835/+977 |
| | | | | | | memory leak in Tkapp_(Create|Delete)FileHandler plugged. standard eyeballing | ||||
* | Removed _xdr module | Barry Warsaw | 1997-01-14 | 1 | -1/+0 |
| | |||||
* | Eliminated gcc -Wall complaints: | Barry Warsaw | 1997-01-14 | 1 | -26/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Quieted gcc -Wall by removing unused local variables. - Added some choice parentheses around assignments in conditional tests. - Removed an unused (and seemingly unreachable) err label in load_short_binstring(). - in Unpickler_load(), removed \. in string format. - init_stuff() was declared to return an int, but had these problems: - it was returning NULL instead of 0 or 1 in some cases - it was falling of the end of the routine without returning anything - the call of init_stuff() in initcPickle() was never checking the return value anyway. I changed all this by returning 1 in the case of errors, 0 when no error occurred. Then in initcPickle(), if init_stuff() returns non-zero, I call Py_FatalError(). Suppressing my urge to reformat according to Python coding standards! :-) | ||||
* | Quieted gcc -Wall by removing unused local variables. | Barry Warsaw | 1997-01-14 | 1 | -5/+9 |
| | | | | | Suppressing my urge to reformat according to Python coding standards! :-) | ||||
* | Quieted gcc -Wall by removing unused local variables. | Barry Warsaw | 1997-01-14 | 1 | -2/+0 |
| | |||||
* | Formatting. | Barry Warsaw | 1997-01-14 | 1 | -18/+17 |
| | |||||
* | Obsolete, now that xdrlib.py uses the new-and-improved struct module. | Barry Warsaw | 1997-01-14 | 1 | -187/+0 |
| | |||||
* | Renamed. | Barry Warsaw | 1997-01-13 | 1 | -49/+45 |
| | |||||
* | Formatting, and minor error detection | Barry Warsaw | 1997-01-13 | 1 | -49/+52 |
| |