| Commit message (Expand) | Author | Age | Files | Lines |
* | Document general mappings for the locals argument for exec and execfile(). | Raymond Hettinger | 2004-08-03 | 2 | -9/+11 |
|
|
* | Fix [ 1001018 ]: Windows: setdefaulttimeout causes unnecessary timeouts on | Mark Hammond | 2004-08-03 | 1 | -3/+24 |
|
|
* | Tweak previous patch to silence a warning about the unused left value in the | Brett Cannon | 2004-08-03 | 1 | -1/+1 |
|
|
* | fix a little lie ;-( | Fred Drake | 2004-08-02 | 1 | -3/+2 |
|
|
* | Fix typo though | Neal Norwitz | 2004-08-02 | 1 | -2/+2 |
|
|
* | fix markup error | Fred Drake | 2004-08-02 | 1 | -1/+1 |
|
|
* | start filling in documentation on extending distutils | Fred Drake | 2004-08-02 | 1 | -2/+48 |
|
|
* | - fix description of option table entries | Fred Drake | 2004-08-02 | 1 | -3/+4 |
|
|
* | Use isabs() in conditional, not abspath | Andrew M. Kuchling | 2004-08-02 | 1 | -1/+1 |
|
|
* | Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItem | Michael W. Hudson | 2004-08-02 | 1 | -2/+4 |
|
|
* | Add PEP318 | Andrew M. Kuchling | 2004-08-02 | 1 | -4/+131 |
|
|
* | Any call to insort_{left,right} with a non-list leaked a reference to None | Michael W. Hudson | 2004-08-02 | 1 | -6/+10 |
|
|
* | Add a missing decref. | Michael W. Hudson | 2004-08-02 | 1 | -0/+1 |
|
|
* | for some reason, the lack of adherence to Python's C whitespace rules | Michael W. Hudson | 2004-08-02 | 1 | -2/+2 |
|
|
* | Add import change; add empty section for function decorators | Andrew M. Kuchling | 2004-08-02 | 1 | -0/+17 |
|
|
* | Update item | Andrew M. Kuchling | 2004-08-02 | 1 | -2/+4 |
|
|
* | and a unit test for the staticmethod-of-a-non-method failure just fixed | Anthony Baxter | 2004-08-02 | 1 | -0/+6 |
|
|
* | fix for @decorators under a debug build. | Anthony Baxter | 2004-08-02 | 1 | -0/+1 |
|
|
* | Fix doubled word. | Raymond Hettinger | 2004-08-02 | 1 | -1/+1 |
|
|
* | Completed the patch for Bug #215126. | Raymond Hettinger | 2004-08-02 | 5 | -6/+93 |
|
|
* | notes for @decorator | Anthony Baxter | 2004-08-02 | 2 | -0/+7 |
|
|
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 28 | -1918/+2548 |
|
|
* | Typo repair. | Tim Peters | 2004-08-02 | 1 | -1/+1 |
|
|
* | Completed a sentence I left dangling. | Tim Peters | 2004-08-02 | 1 | -1/+2 |
|
|
* | Removed reliance on damaged module object appearing in sys.modules | Tim Peters | 2004-08-02 | 1 | -2/+1 |
|
|
* | New tests: | Tim Peters | 2004-08-02 | 1 | -0/+84 |
|
|
* | Removed no-longer-needed convolutions to recover from damaged modules | Tim Peters | 2004-08-02 | 2 | -25/+0 |
|
|
* | PyImport_ExecCodeModuleEx(): remove module from sys.modules in error cases. | Tim Peters | 2004-08-02 | 1 | -16/+46 |
|
|
* | "Core" and "C API" news about new semantics for failing imports. | Tim Peters | 2004-08-02 | 1 | -1/+33 |
|
|
* | PyImport_ImportModule, PyImport_ImportModuleEx, PyImport_ExecCodeModule: | Tim Peters | 2004-08-02 | 1 | -10/+28 |
|
|
* | lock_held() docs: Use True/False instead of 1/0. The LaTeX docs were | Tim Peters | 2004-08-01 | 1 | -3/+3 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2004-08-01 | 1 | -2/+2 |
|
|
* | Fix SF #1001053, wave.open() with unicode filename fails | Neal Norwitz | 2004-08-01 | 2 | -2/+4 |
|
|
* | Fix typo in comment | Neal Norwitz | 2004-08-01 | 1 | -1/+1 |
|
|
* | SF bug #1001088, incorrect reference to macro named foo | Neal Norwitz | 2004-08-01 | 1 | -1/+1 |
|
|
* | list_ass_slice(): Document the obscure new intent that deleting a slice | Tim Peters | 2004-07-31 | 1 | -8/+16 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-07-31 | 2 | -100/+100 |
|
|
* | Be more careful about reverting mutuations to system-wide (sys) variables. | Tim Peters | 2004-07-31 | 1 | -20/+31 |
|
|
* | Mention upgrade of optparse to Optik 1.5a1. | Greg Ward | 2004-07-31 | 1 | -0/+31 |
|
|
* | Upgrade optparse module and tests to Optik 1.5a1: | Greg Ward | 2004-07-31 | 2 | -341/+747 |
|
|
* | list_ass_slice(): The difference between "recycle" and "recycled" was | Tim Peters | 2004-07-31 | 1 | -17/+10 |
|
|
* | Armin asked for a list_ass_slice review in his checkin, so here's the | Tim Peters | 2004-07-31 | 1 | -26/+44 |
|
|
* | Repair typo in docstring. | Tim Peters | 2004-07-31 | 1 | -1/+1 |
|
|
* | re-wrap paragraphs containing long lines | Fred Drake | 2004-07-30 | 1 | -43/+56 |
|
|
* | - document the termination condition for cmd.Cmd.cmdloop() | Fred Drake | 2004-07-30 | 1 | -1/+8 |
|
|
* | Fix typo. | Martin v. Löwis | 2004-07-30 | 1 | -1/+1 |
|
|
* | Add closing methoddesc. Add versionadded. Rewrap. | Martin v. Löwis | 2004-07-30 | 1 | -2/+6 |
|
|
* | This is a reorganization of list_ass_slice(). It should probably be reviewed, | Armin Rigo | 2004-07-30 | 1 | -22/+20 |
|
|
* | What if you call lst.__init__() while it is being sorted? :-) | Armin Rigo | 2004-07-30 | 1 | -2/+4 |
|
|
* | * Simplify and speed-up list_resize(). Relying on the newly documented | Raymond Hettinger | 2004-07-29 | 1 | -3/+7 |
|
|