Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Lists work better when popping from the right. | Raymond Hettinger | 2004-02-07 | 1 | -3/+4 |
| | |||||
* | Have deques support high volume loads. | Raymond Hettinger | 2004-02-06 | 3 | -25/+104 |
| | |||||
* | SF patch #864059: optimize eval_frame | Raymond Hettinger | 2004-02-06 | 1 | -5/+6 |
| | | | | | | Simplified version of Neal Norwitz's patch which adds gotos for opcodes that set "why". This skips a number of tests where the outcome of the tests are known in advance. | ||||
* | Fix test failure message (from SF patch #885008) | Walter Dörwald | 2004-02-06 | 1 | -1/+1 |
| | |||||
* | Back rev 1.3 out per Raymond's request. | Hye-Shik Chang | 2004-02-06 | 1 | -1/+6 |
| | |||||
* | added notes about weakref changes | Fred Drake | 2004-02-06 | 1 | -0/+15 |
| | |||||
* | Simple is better than complex. | Hye-Shik Chang | 2004-02-06 | 1 | -6/+1 |
| | |||||
* | Fix reallocation bug in unicode.translate(): The code was comparing | Walter Dörwald | 2004-02-05 | 2 | -1/+2 |
| | | | | characters instead of character pointers to determine space requirements. | ||||
* | Allocating a new weakref object can cause existing weakref objects for | Fred Drake | 2004-02-04 | 2 | -3/+48 |
| | | | | | | | | | the same object to be collected by the cyclic GC support if they are only referenced by a cycle. If the weakref being collected was one of the weakrefs without callbacks, some local variables for the constructor became invalid and have to be re-computed. The test caused a segfault under a debug build without the fix applied. | ||||
* | minor markup adjustments | Fred Drake | 2004-02-03 | 1 | -2/+2 |
| | |||||
* | - add tests that exercise fixes for the PyWeakref_NewRef() and | Fred Drake | 2004-02-03 | 1 | -0/+41 |
| | | | | | PyWeakref_NewProxy() constructors from the C API - elaborate the getweakrefcount() and getweakrefs() tests slightly | ||||
* | Fix bug in interpretation of the "callback" argument in the constructors for | Fred Drake | 2004-02-03 | 1 | -1/+5 |
| | | | | | weakref ref and proxy objects; None was not being treated as identical to NULL, though it was documented as equivalent. | ||||
* | Clarify minor point about the ref() and proxy() constructors. | Fred Drake | 2004-02-03 | 1 | -1/+2 |
| | | | | This matches what is already documented for corresponding feature of the C API. | ||||
* | Fix input() builtin function to respect compiler flags. | Hye-Shik Chang | 2004-02-02 | 3 | -1/+20 |
| | | | | (SF patch 876178, patch by mwh, unittest by perky) | ||||
* | Add FreeBSD support for bluetooth sockets. (SF Patch #888148) | Hye-Shik Chang | 2004-02-02 | 1 | -0/+4 |
| | |||||
* | Add FreeBSD support for bluetooth sockets. | Hye-Shik Chang | 2004-02-02 | 4 | -17/+47 |
| | | | | (SF Patch #888148, reviewed by loewis) | ||||
* | Add collectionsmodule.c. | Martin v. Löwis | 2004-02-01 | 1 | -2/+3 |
| | | | | Don't link with largeint.lib anymore. | ||||
* | Patch #874083: Bluetooth support for socket module. | Martin v. Löwis | 2004-01-31 | 7 | -63/+126 |
| | |||||
* | update dependency information | Fred Drake | 2004-01-29 | 1 | -0/+1 |
| | |||||
* | Add documentation for collections.deque(). | Raymond Hettinger | 2004-01-29 | 1 | -0/+1 |
| | |||||
* | Fix spelling. | Raymond Hettinger | 2004-01-29 | 1 | -2/+2 |
| | |||||
* | Add documentation for collections.deque(). | Raymond Hettinger | 2004-01-29 | 1 | -0/+88 |
| | |||||
* | * Move collections.deque() in from the sandbox | Raymond Hettinger | 2004-01-29 | 15 | -56/+982 |
| | | | | | | * Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming | ||||
* | Add missed entry for cjkcodecs._iso_2022_kr. | Hye-Shik Chang | 2004-01-28 | 1 | -0/+1 |
| | |||||
* | fix whitespace style (inconsistent with the rest of the docs) | Fred Drake | 2004-01-27 | 1 | -17/+17 |
| | |||||
* | Removed two unneeded lines from PyObject_Compare(). | Brett Cannon | 2004-01-27 | 1 | -2/+0 |
| | | | | Closes bug #885293 (thanks, Josiah Carlson). | ||||
* | update signature of the socket constructor | Fred Drake | 2004-01-27 | 1 | -5/+7 |
| | | | | (could someone backport this to Python 2.3.x please?) | ||||
* | Two forgotten Py_DECREF() for two out-of-memory conditions. | Armin Rigo | 2004-01-27 | 1 | -2/+6 |
| | |||||
* | add hotshotmain ref | Skip Montanaro | 2004-01-27 | 1 | -0/+3 |
| | |||||
* | add hotshotmain.py ref | Skip Montanaro | 2004-01-27 | 1 | -0/+1 |
| | |||||
* | The bagpipe didn't say "no" (*), so here's a main program script useful for | Skip Montanaro | 2004-01-26 | 1 | -0/+54 |
| | | | | | | | running an application under hotshot's control. Only slightly embellished from what Walter Dörwald posted to python-dev. (*) http://www.icdc.com/~roadkill/silverstein/turtle.html | ||||
* | add missing period | Fred Drake | 2004-01-26 | 1 | -1/+1 |
| | |||||
* | fix markup | Fred Drake | 2004-01-26 | 1 | -1/+1 |
| | |||||
* | add references between getopt and optparse docs | Skip Montanaro | 2004-01-26 | 2 | -0/+8 |
| | |||||
* | don't wrap lines too late by default | Fred Drake | 2004-01-26 | 1 | -2/+2 |
| | | | | closes SF bug #842213 | ||||
* | make this distutils doc match the other in using boilerplate.tex | Fred Drake | 2004-01-26 | 1 | -0/+2 |
| | |||||
* | Added the cjkcodecs files to the MSVC 6 build. | Tim Peters | 2004-01-25 | 1 | -0/+100 |
| | |||||
* | no reason not to use boilerplate.tex now that it names the PSF | Fred Drake | 2004-01-23 | 1 | -0/+2 |
| | |||||
* | Fix MSVC6 warnings. (spotted by Tim Peters) | Hye-Shik Chang | 2004-01-23 | 20 | -48/+48 |
| | |||||
* | fix some sloppy markup to use \guilabel | Fred Drake | 2004-01-23 | 1 | -20/+21 |
| | |||||
* | add \guilabel macro to mark labels that occur in user interfaces | Fred Drake | 2004-01-23 | 4 | -4/+24 |
| | |||||
* | fix method name in example code | Fred Drake | 2004-01-23 | 1 | -2/+2 |
| | |||||
* | There was an error in the Tk error dialog fix at Rev 1.84 which caused starting | Kurt B. Kaiser | 2004-01-21 | 1 | -2/+2 |
| | | | | | | | | w/o the subprocess to fail. Check in a fix to IDLE and IDLEfork. M PyShell.py Backport candidate, combine with previous. | ||||
* | rpc.py:SocketIO - Large modules were generating large pickles when downloaded | Kurt B. Kaiser | 2004-01-21 | 2 | -8/+14 |
| | | | | | | | | | | | | to the execution server. The return of the OK response from the subprocess initialization was interfering and causing the sending socket to be not ready. Add an IO ready test to fix this. Moved the polling IO ready test into pollpacket(). M NEWS.txt M rpc.py Backport candidate. | ||||
* | Added a Tk error dialog to run.py inform the user if the subprocess can't | Kurt B. Kaiser | 2004-01-21 | 4 | -56/+96 |
| | | | | | | | | | | | | | | connect to the user GUI process. Added a timeout to the GUI's listening socket. Added Tk error dialogs to PyShell.py to announce a failure to bind the port or connect to the subprocess. Clean up error handling during connection initiation phase. This is an update of Python Patch 778323. M NEWS.txt M PyShell.py M ScriptBinding.py M run.py Backport candidate. | ||||
* | add direct link to the article in DDJ | Fred Drake | 2004-01-21 | 1 | -1/+2 |
| | | | | closes SF bug #871402 | ||||
* | expand on notion of row object type | Skip Montanaro | 2004-01-21 | 1 | -3/+10 |
| | |||||
* | typo | Skip Montanaro | 2004-01-21 | 1 | -1/+1 |
| | |||||
* | Add cjkcodecs to build process | Martin v. Löwis | 2004-01-21 | 2 | -0/+128 |
| | |||||
* | pwd_getpwuid(), pwd_getpwnam(): Patch # 868499, improvement to the error | Barry Warsaw | 2004-01-20 | 1 | -2/+4 |
| | | | | messages. |