| Commit message (Expand) | Author | Age | Files | Lines |
* | Add sys.hexversion, which is an integer encoding the version in hexadecimal. | Guido van Rossum | 1999-01-03 | 1 | -0/+2 |
|
|
* | Use PY_VERSION instead of PATCHLEVEL. | Guido van Rossum | 1999-01-03 | 1 | -1/+2 |
|
|
* | Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch). | Guido van Rossum | 1999-01-02 | 1 | -0/+4 |
|
|
* | Oops, forgot a pair of {}'s. (Greg Couch) | Guido van Rossum | 1998-12-23 | 1 | -1/+2 |
|
|
* | Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF. | Guido van Rossum | 1998-12-23 | 1 | -1/+3 |
|
|
* | Improve comment for PyImport_Import() as suggested by Bill Tutt. | Guido van Rossum | 1998-12-21 | 1 | -1/+4 |
|
|
* | Thanks to Chris Herborth, the thread primitives now have proper Py* | Guido van Rossum | 1998-12-21 | 13 | -412/+412 |
|
|
* | Use PyThreadState_GET() macro. | Guido van Rossum | 1998-12-21 | 2 | -2/+2 |
|
|
* | Make current_tstate a global, _PyThreadState_Current. This is to | Guido van Rossum | 1998-12-21 | 1 | -10/+10 |
|
|
* | Chris H. writes: | Guido van Rossum | 1998-12-18 | 1 | -1/+1 |
|
|
* | Patch by Chris Herborth: | Guido van Rossum | 1998-12-17 | 1 | -0/+4 |
|
|
* | Move the prototype for dump_counts() to before where it is used. | Guido van Rossum | 1998-12-15 | 1 | -4/+4 |
|
|
* | Remove prototypes for PyOS_strto[u]l -- Chris Herborth. | Guido van Rossum | 1998-12-10 | 1 | -3/+0 |
|
|
* | Add more SET_LINENO instructions in long argument lists | Guido van Rossum | 1998-12-10 | 1 | -1/+7 |
|
|
* | Adding thread support for BeOS by Chris Herborth. | Guido van Rossum | 1998-12-07 | 1 | -0/+388 |
|
|
* | Use PyInt_AS_LONG macro instead of explicit inlining. | Guido van Rossum | 1998-12-04 | 1 | -6/+6 |
|
|
* | Need to add default decl of DL_IMPORT, for mymalloc.h | Guido van Rossum | 1998-12-04 | 1 | -0/+5 |
|
|
* | Added new builtin standard exception: NotImplementedError (its C | Barry Warsaw | 1998-12-01 | 1 | -0/+2 |
|
|
* | Fix cosmetic bug in delattr docstring discovered by JvR. | Guido van Rossum | 1998-11-23 | 1 | -1/+1 |
|
|
* | Whoops! One the "redundant" initializations removed by Vladimir in | Guido van Rossum | 1998-11-23 | 1 | -2/+2 |
|
|
* | Remove some redundant initializations -- patch by Vladimir Marangozov. | Guido van Rossum | 1998-11-17 | 1 | -4/+4 |
|
|
* | Jim Fulton writes: | Guido van Rossum | 1998-10-22 | 1 | -0/+1 |
|
|
* | When errno is zero, avoid calling strerror() and use "Error" for the | Guido van Rossum | 1998-10-14 | 1 | -2/+7 |
|
|
* | Replace fprintf(stderr, ...) with PySys_WriteStderr(...). | Guido van Rossum | 1998-10-12 | 2 | -23/+23 |
|
|
* | Patches for mywrite() by Marc Lemburg: save/restore the error state | Guido van Rossum | 1998-10-12 | 1 | -3/+6 |
|
|
* | Implement new format character 't#'. This is like s#, accepting an | Guido van Rossum | 1998-10-08 | 1 | -0/+25 |
|
|
* | The previous checkin contained an experiment of Greg Stein's that wasn't | Guido van Rossum | 1998-10-08 | 1 | -1/+1 |
|
|
* | On Win32, use | Guido van Rossum | 1998-10-08 | 1 | -1/+4 |
|
|
* | Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. | Guido van Rossum | 1998-10-07 | 1 | -3/+7 |
|
|
* | Changes to support other object types besides strings | Guido van Rossum | 1998-10-07 | 3 | -13/+40 |
|
|
* | BSDI specific patches, inspired by Nigel Head and otto@mail.olympus.net. | Guido van Rossum | 1998-10-07 | 1 | -1/+22 |
|
|
* | Support PYTHONOPTIMIZE variable; by Marc Lemburg. | Guido van Rossum | 1998-10-07 | 1 | -0/+2 |
|
|
* | Eh, better error message for the previous change. It now says | Guido van Rossum | 1998-10-02 | 1 | -1/+1 |
|
|
* | Treat def f(a, b=1, c): ... as an error (missing default for c) | Guido van Rossum | 1998-10-02 | 1 | -7/+4 |
|
|
* | Renamed thread.h to pythread.h. | Guido van Rossum | 1998-10-01 | 1 | -15/+15 |
|
|
* | Renamed thread.h to pythread.h. | Guido van Rossum | 1998-10-01 | 4 | -4/+4 |
|
|
* | On second though, NEXITFUNCS should be defined here and not in | Guido van Rossum | 1998-10-01 | 1 | -1/+1 |
|
|
* | builtin_apply(): Second argument type check is relaxed to allow any sequence. | Barry Warsaw | 1998-10-01 | 1 | -6/+18 |
|
|
* | While scalling sys.modules, skip entries that don't have string keys, | Guido van Rossum | 1998-10-01 | 1 | -4/+4 |
|
|
* | In FreeBSD when using ELF, an underscore is needed in front of the | Guido van Rossum | 1998-09-30 | 1 | -1/+1 |
|
|
* | Remove redundant definition of NEXITFUNCS. | Guido van Rossum | 1998-09-28 | 1 | -1/+1 |
|
|
* | Several changes that Python carry on in the face of errors in the | Barry Warsaw | 1998-09-14 | 1 | -26/+61 |
|
|
* | Mac-specific mod to enable aliases on import paths. | Guido van Rossum | 1998-09-14 | 2 | -9/+35 |
|
|
* | Apparently on AIX when using gcc you need to call pthread_init() | Guido van Rossum | 1998-09-10 | 1 | -0/+3 |
|
|
* | Correct typo in #ifdef: PY_THREAD_D4, should be PY_PTHREAD_D4. | Guido van Rossum | 1998-09-04 | 1 | -1/+1 |
|
|
* | Should no longer surround PyOS_Readline() call with | Guido van Rossum | 1998-09-03 | 1 | -4/+0 |
|
|
* | Add a 'volatile' to the declaration of threadid in get_thread_ident(). | Guido van Rossum | 1998-08-27 | 1 | -1/+1 |
|
|
* | Don't release the interpreter lock around PyParser_ParseFile(). | Guido van Rossum | 1998-08-27 | 1 | -4/+0 |
|
|
* | __file__ used to be always set to the .pyc (or .pyo) file, even if | Guido van Rossum | 1998-08-25 | 1 | -1/+2 |
|
|
* | Comment out the print statement about underflow. (This only seems to | Guido van Rossum | 1998-08-25 | 1 | -2/+2 |
|
|