| Commit message (Expand) | Author | Age | Files | Lines |
* | Added a separate extension (.carbon.slb) for Carbon dynamic modules. | Jack Jansen | 2001-01-15 | 1 | -0/+4 |
|
|
* | Neil discovered a bad DECREF on warnoptions, that caused repeated | Guido van Rossum | 2001-01-13 | 1 | -2/+1 |
|
|
* | Update the docstring for apply() so that "args" is marked as optional | Fred Drake | 2001-01-12 | 1 | -1/+1 |
|
|
* | Two changes to from...import: | Guido van Rossum | 2001-01-12 | 1 | -30/+54 |
|
|
* | (Modified) patch by Ping - SF Patch #102681. | Guido van Rossum | 2001-01-12 | 1 | -27/+33 |
|
|
* | Fixed bugs noted by Greg Stein | Moshe Zadka | 2001-01-11 | 1 | -0/+2 |
|
|
* | stdout is sometimes a macro; use "outf" instead. | Greg Stein | 2001-01-11 | 1 | -5/+5 |
|
|
* | Implementation of PEP-0217. | Moshe Zadka | 2001-01-11 | 2 | -27/+63 |
|
|
* | Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug | Charles G. Waldman | 2001-01-10 | 1 | -3/+6 |
|
|
* | Oops, one more part of the cygwin patch (SF patch #102409 by jlt63: | Guido van Rossum | 2001-01-10 | 1 | -1/+1 |
|
|
* | SF Patch #103154 by jlt63: Cygwin Check Import Case Patch. | Guido van Rossum | 2001-01-10 | 1 | -1/+13 |
|
|
* | Fix signed/unsigned wng. Unfortunately, (unsigned char) << int | Tim Peters | 2001-01-05 | 1 | -2/+2 |
|
|
* | When a PyCFunction that takes only positional parameters is called with | Fred Drake | 2001-01-04 | 1 | -18/+19 |
|
|
* | Recognize pyc files even if they don't end in pyc. | Martin v. Löwis | 2001-01-04 | 1 | -7/+33 |
|
|
* | Add NotImplemented to the builtin module. | Neil Schemenauer | 2001-01-04 | 1 | -0/+3 |
|
|
* | Revised implementation of CALL_FUNCTION and friends. | Jeremy Hylton | 2001-01-03 | 1 | -296/+429 |
|
|
* | CHange error messages for ord(), using "string" instead of "string or Unicode" | Andrew M. Kuchling | 2000-12-23 | 1 | -2/+3 |
|
|
* | Whoops! Two stray characters crept in to my last check-in | Andrew M. Kuchling | 2000-12-20 | 1 | -1/+1 |
|
|
* | Patch #102955, fixing one of the warnings in bug #121479: | Andrew M. Kuchling | 2000-12-20 | 1 | -5/+7 |
|
|
* | Add definitions for PySys_ResetWarnOptions() and | Guido van Rossum | 2000-12-15 | 1 | -0/+39 |
|
|
* | Add PyErr_Warn(). | Guido van Rossum | 2000-12-15 | 1 | -0/+34 |
|
|
* | Add definitions for standard warning category classes (PyExc_Warning | Guido van Rossum | 2000-12-15 | 1 | -0/+36 |
|
|
* | Use c2pstr() in stead of Pstring() to convert C-strings to | Jack Jansen | 2000-12-12 | 1 | -3/+4 |
|
|
* | vgetargskeywords(): Patch for memory leak identified in bug #119862. | Barry Warsaw | 2000-12-11 | 1 | -0/+1 |
|
|
* | _getframe(): New sys module function for getting at the stack frame. | Barry Warsaw | 2000-12-06 | 1 | -0/+37 |
|
|
* | Make isinstance() more permissive in what types of arguments it | Neil Schemenauer | 2000-12-04 | 1 | -17/+9 |
|
|
* | Clarified some of the error messages, esp. "read-only character | Guido van Rossum | 2000-12-01 | 1 | -17/+16 |
|
|
* | Plug a memory leak in com_import_stmt(): the tuple created to hold the | Guido van Rossum | 2000-11-27 | 1 | -1/+2 |
|
|
* | SF bug 119622: compile errors due to redundant atof decls. I don't understand | Tim Peters | 2000-11-14 | 2 | -3/+0 |
|
|
* | Fix syntax error. Submitted by Bill Bumgarner. Apparently this is | Guido van Rossum | 2000-11-13 | 1 | -1/+1 |
|
|
* | Rip out DOS-8x3 support. | Guido van Rossum | 2000-11-13 | 1 | -17/+2 |
|
|
* | Move our own getopt() implementation to _PyOS_GetOpt(), and use it | Thomas Wouters | 2000-11-03 | 2 | -32/+19 |
|
|
* | Fix for SF bug #117241 | Jeremy Hylton | 2000-10-30 | 1 | -1/+15 |
|
|
* | 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 |
|
|