| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch 102114, Bug 11725. On OpenBSD (but apparently not on the other | Guido van Rossum | 2000-10-25 | 1 | -2/+7 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 4 | -57/+76 |
|
|
* | Andy Dustman <adustman@users.sourceforge.net>: | Fred Drake | 2000-10-12 | 1 | -3/+0 |
|
|
* | Do a better job at staying on-screen :P (Sorry, it's late here.) I'm | Thomas Wouters | 2000-10-11 | 1 | -1/+2 |
|
|
* | Adjust debugging code in the implementation of the DUP_TOPX bytecode, use | Thomas Wouters | 2000-10-11 | 1 | -5/+1 |
|
|
* | Remove the last gcc -Wall warning about possible use of an uninitialized | Fred Drake | 2000-10-11 | 1 | -0/+1 |
|
|
* | Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg, | Tim Peters | 2000-10-11 | 1 | -31/+61 |
|
|
* | Avoid a couple of "value computed is not used" warnings from gcc -Wall; | Fred Drake | 2000-10-10 | 1 | -2/+2 |
|
|
* | Donn Cave <donn@u.washington.edu>: | 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 | -0/+5 |
|
|
* | Detect conflicting Python DLL on module import under Windows - as per [ Patch... | Mark Hammond | 2000-10-05 | 1 | -1/+152 |
|
|
* | _PyImport_Fini(): Closed small memory leak when an embedded app calls | Barry Warsaw | 2000-10-03 | 1 | -0/+2 |
|
|
* | The 2.0b2 change to write .pyc files in exclusive mode (if possible) | Tim Peters | 2000-09-29 | 1 | -1/+6 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 6 | -24/+0 |
|
|
* | Andrew Kuchling <akuchlin@mems-exchange.org>: | Fred Drake | 2000-09-23 | 1 | -0/+27 |
|
|
* | Special case the "s#" PyArg_Parse() token for Unicode objects: | Marc-André Lemburg | 2000-09-21 | 1 | -26/+53 |
|
|
* | On Unix, use O_EXCL when creating the .pyc/.pyo files, to avoid a race condition | Guido van Rossum | 2000-09-20 | 1 | -1/+31 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 2 | -12/+7 |
|
|
* | Obscure marshal fixes: | Tim Peters | 2000-09-19 | 1 | -4/+4 |
|
|
* | Make better use of GNU Pth -- patch by Andy Dustman. | Guido van Rossum | 2000-09-19 | 1 | -3/+4 |
|
|
* | Deferred the attribute name object type checking to the underlying | Marc-André Lemburg | 2000-09-18 | 1 | -4/+4 |
|
|
* | Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() or | Guido van Rossum | 2000-09-16 | 1 | -0/+34 |
|
|
* | Added B format char to Py_BuildValue (same as b,h,i, but makes | Jack Jansen | 2000-09-15 | 1 | -1/+1 |
|
|
* | Cast UCHAR_MAX to int before doing the comparison for overflow of the | Jack Jansen | 2000-09-15 | 1 | -0/+1 |
|
|
* | com_continue_stmt(): Improve error message when continue is found | Fred Drake | 2000-09-08 | 1 | -1/+22 |
|
|
* | This patch hopefully fixes the problem with "es#" and "es" in | Marc-André Lemburg | 2000-09-08 | 1 | -0/+2 |
|
|
* | The GCC version is loooooooooong; put it on a new line. | Guido van Rossum | 2000-09-05 | 1 | -1/+1 |
|
|
* | All right. More uniformity, and extra blank lines. | Guido van Rossum | 2000-09-04 | 1 | -1/+4 |
|
|
* | Use periods, not semicolons between Copyright and All Rights Reserved. | Guido van Rossum | 2000-09-04 | 1 | -3/+3 |
|
|
* | Fix the char* vs. const char* mismatch for the argument of aix_loaderror() | Vladimir Marangozov | 2000-09-04 | 1 | -1/+1 |
|
|
* | Change the copyright notice according to CNRI's wishes, with | Guido van Rossum | 2000-09-03 | 1 | -2/+5 |
|
|
* | changed \x to consume exactly two hex digits. implements PEP-223 | Fredrik Lundh | 2000-09-02 | 1 | -16/+28 |
|
|
* | PyInterpreterState_New is not thread-safe, and the recent fix to _PyPclose | Tim Peters | 2000-09-02 | 1 | -0/+4 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 51 | -475/+0 |
|
|
* | Cosmetics on Py_Get/SetRecursionLimit (for the style guide) | Vladimir Marangozov | 2000-09-01 | 1 | -2/+4 |
|
|
* | code part of patch #100895 by Fredrik Lundh | Jeremy Hylton | 2000-09-01 | 1 | -4/+124 |
|
|
* | Revert removal of void from function definition. Guido sez I can take it | Tim Peters | 2000-09-01 | 1 | -1/+1 |
|
|
* | refactor __del__ exception handler into PyErr_WriteUnraisable | Jeremy Hylton | 2000-09-01 | 1 | -0/+27 |
|
|
* | Set the recursion limit to 1000 -- 2500 was not enough, let's be | Guido van Rossum | 2000-09-01 | 1 | -1/+1 |
|
|
* | Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ... | Tim Peters | 2000-09-01 | 1 | -1/+1 |
|
|
* | add user-modifiable recursion_limit | Jeremy Hylton | 2000-08-31 | 2 | -8/+66 |
|
|
* | _PySys_Init(): When setting up sys.version_info, use #if/#elif.../#endif | Fred Drake | 2000-08-31 | 1 | -6/+3 |
|
|
* | PyOS_CheckStack(): Better ANSI'fy this while we're at it. | Fred Drake | 2000-08-31 | 1 | -1/+1 |
|
|
* | Add a comment explaining the return value of PyOS_CheckStack(). | Fred Drake | 2000-08-31 | 1 | -1/+4 |
|
|
* | Better error message with UnboundLocalError | Paul Prescod | 2000-08-30 | 1 | -11/+39 |
|
|
* | eval_code2(): Guido provides this patch for his suggested elaboration | Barry Warsaw | 2000-08-29 | 1 | -2/+2 |
|
|
* | Replace the run-time 'future-bytecode-stream-inspection' hack to find out | Thomas Wouters | 2000-08-27 | 3 | -59/+19 |
|
|
* | Hard to believe Guido compiled this! Function lacked a return stmt. | Tim Peters | 2000-08-27 | 1 | -1/+1 |
|
|
* | Re-allow 'import mod.submod as s', and change its meaning to what it should | Thomas Wouters | 2000-08-27 | 1 | -2/+5 |
|
|
* | Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), | Guido van Rossum | 2000-08-27 | 2 | -11/+34 |
|
|