Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF Patch #926375: Remove a useless UTF-16 support code that is never | Hye-Shik Chang | 2004-04-06 | 1 | -18/+3 |
| | | | | been used. (Suggested by Martin v. Loewis) | ||||
* | Since the fast_yield branch target was introduced, it appears that most | Tim Peters | 2004-04-05 | 1 | -41/+41 |
| | | | | | | | tests of "why" against WHY_YIELD became useless. This patch removes them, but assert()s that why != WHY_YIELD everywhere such a test was removed. The test suite ran fine under a debug build (i.e., the asserts never triggered). | ||||
* | Improve previous checkin to use a slot check instead of equivalent | Raymond Hettinger | 2004-04-05 | 1 | -1/+2 |
| | | | | attribute name lookup. | ||||
* | Improve accuracy of sequence and mapping checks. | Raymond Hettinger | 2004-04-04 | 2 | -2/+11 |
| | |||||
* | OS/2's TCP/IP stack supports AF_UNIX sockets, with the limitation that | Andrew MacIntyre | 2004-04-04 | 1 | -4/+4 |
| | | | | | the socket name must start with /socket32/. Unlike Unix systems, this file never exists in the file system. | ||||
* | OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied | Andrew MacIntyre | 2004-04-04 | 2 | -2/+234 |
| | | | | | | | with major C compilers (VACPP, EMX+gcc and [Open]Watcom). Also tidy up the export of spawn*() symbols in the os module to match what is found/implemented. | ||||
* | If a file is opened with an explicit buffer size >= 1, repeated | Andrew MacIntyre | 2004-04-04 | 3 | -0/+23 |
| | | | | | | | | close() calls would attempt to free() the buffer already free()ed on the first close(). [bug introduced with patch #788249] Making sure that the buffer is free()ed in file object deallocation is a belt-n-braces bit of insurance against a memory leak. | ||||
* | #928751, fix typos in socket doc | Neal Norwitz | 2004-04-03 | 1 | -3/+3 |
| | |||||
* | It would help if I deleted the old pystack! | Skip Montanaro | 2004-04-02 | 1 | -23/+11 |
| | | | | Also, move pystack comment down next to it | ||||
* | include local variables when dumping Python stack trace | Skip Montanaro | 2004-04-02 | 1 | -9/+36 |
| | |||||
* | Fix support for the "prog" keyword to the OptionParser constructor, as well | Fred Drake | 2004-04-01 | 2 | -3/+24 |
| | | | | | | as directly setting the .prog attribute (which should be supported based on the class docstring). Closes SF bug #850964. | ||||
* | fix typo that wasn't properly fixed in revision 1.144 | Fred Drake | 2004-04-01 | 1 | -1/+1 |
| | |||||
* | Bump the magic number to avoid sharing bytecode between 2.3 and 2.4. | Jeremy Hylton | 2004-04-01 | 1 | -32/+14 |
| | | | | | Revise the long comment that explained details of the magic number in gory detail. | ||||
* | [Bugfix candidate] Escape traceback type and value. There are probably ↵ | Andrew M. Kuchling | 2004-03-31 | 1 | -1/+2 |
| | | | | additional cases where cgitb.py doesn't escape as paranoidly as it should (e.g. attribute names) | ||||
* | Patch #924497: find(1) all files with /usr/local/bin/python in them. | Martin v. Löwis | 2004-03-31 | 1 | -5/+7 |
| | | | | Backported to 2.3. | ||||
* | When /tmp has certain sticky bits set, newly created subdirectories | Guido van Rossum | 2004-03-31 | 1 | -0/+1 |
| | | | | | inherit those bits, causing the test_mkdtemp.test_mode() test to fail. Remove those before comparing the actual mode to the expected mode. | ||||
* | add a heavy box around warning notices to make them really stand out in the | Fred Drake | 2004-03-31 | 3 | -1/+31 |
| | | | | PDF and PostScript versions of the docs (the CSS already does this for HTML) | ||||
* | add missing and forthcoming releases | Fred Drake | 2004-03-31 | 1 | -0/+2 |
| | |||||
* | Emphasize the requirement that Python.h be included first more strongly. | Fred Drake | 2004-03-31 | 2 | -6/+12 |
| | | | | Closes SF bug #837228; backporting for Python 2.3.4. | ||||
* | added scripts to the list of files automatically included in the | Fred Drake | 2004-03-31 | 1 | -0/+1 |
| | | | | distribution (see SF bug #796042) | ||||
* | OS/2 VACPP build updates/fixes | Andrew MacIntyre | 2004-03-29 | 5 | -5/+6 |
| | |||||
* | Added a comment about the unreferenced PyThreadState.tick_counter | Tim Peters | 2004-03-29 | 1 | -11/+18 |
| | | | | member. | ||||
* | fix typo | Andrew M. Kuchling | 2004-03-29 | 1 | -1/+1 |
| | |||||
* | Insert missing pronoun | Raymond Hettinger | 2004-03-28 | 1 | -2/+2 |
| | |||||
* | SF bug 924242: socket._fileobject._getclosed() returns wrong value | Tim Peters | 2004-03-28 | 2 | -1/+9 |
| | | | | | | The .closed property always returned the wrong result. Bugfix candidate! | ||||
* | add usage() function, -h(elp) flag and long versions of short flags | Skip Montanaro | 2004-03-27 | 1 | -8/+18 |
| | |||||
* | - add entry for complex number | Skip Montanaro | 2004-03-27 | 1 | -22/+42 |
| | | | | | | - fix a couple typos - refine definitions for "interpreted" and "coercion" based upon updates on the python glossary wiki | ||||
* | Revert 1.51 booleans so that sre will still run on old pythons. | Raymond Hettinger | 2004-03-27 | 1 | -6/+6 |
| | |||||
* | Simple Optimizations: | Raymond Hettinger | 2004-03-26 | 1 | -73/+92 |
| | | | | | * Factor constant expressions out of loops. * Presize a list being grown to a known length. | ||||
* | Remove unnecessary test. (Thanks Skip) | Raymond Hettinger | 2004-03-26 | 1 | -6/+0 |
| | |||||
* | remove out-of-date warning | Fred Drake | 2004-03-26 | 1 | -5/+0 |
| | |||||
* | Fix test failure for test_tcl on OS/X and Windows if a | David Ascher | 2004-03-26 | 1 | -7/+1 |
| | | | | | | | | | | | version of Tcl other than ActiveTcl is installed (ActiveTcl included TclX, other Tcl distros didn't). I'm removing the package loading test because it's hard to come up with a package that is guaranteed to be in any Tcl installation. Special-casing darwin and windows is ok since that leaves the only Tk platform (X) which the test was trying to address. | ||||
* | Marshal clean-up (SF patch #873224) | Armin Rigo | 2004-03-26 | 3 | -70/+66 |
| | |||||
* | Simple optimizations: | Raymond Hettinger | 2004-03-26 | 1 | -47/+69 |
| | | | | | | | | | * pre-build a single identity function for the fixup function * pre-build membership tests in dictionaries instead of in-line tuples * assign len() to a local variable * assign append() methods to a local variable * use xrange() instead of range() * replace "x<<1" with "x+x" | ||||
* | Update timeit example to reflect current performance. | Raymond Hettinger | 2004-03-26 | 1 | -3/+3 |
| | |||||
* | make sure the default manifest generation includes files identified as | Fred Drake | 2004-03-25 | 2 | -0/+6 |
| | | | | | scripts closes SF bug 796042 | ||||
* | Added more Windows version names (thanks to Thomas Heller). | Marc-André Lemburg | 2004-03-25 | 1 | -29/+23 |
| | | | | | | Fixed bug in platform() cache (thanks to Brett Cannon). (Restored Python 1.5.2 compatibility.) | ||||
* | Fix last patch to be backwards-compatible with Python 1.5.2 . | Brett Cannon | 2004-03-25 | 1 | -12/+25 |
| | | | | Bumped version micro number. | ||||
* | Fixed a caching bug in platform.platform() where the argument of 'terse' was | Brett Cannon | 2004-03-25 | 2 | -9/+12 |
| | | | | not taken into consideration when caching value. | ||||
* | Note that reading from a socket may not always return all of the | Fred Drake | 2004-03-25 | 1 | -0/+4 |
| | | | | | remaining content of a stream when expected to do so. Closes SF bug #725265. Should be backported to Python 2.3.x. | ||||
* | - make sure the methods minidom adds to the basic DOM are attributed | Fred Drake | 2004-03-25 | 1 | -15/+10 |
| | | | | | | | to Node objects in the index (closes SF bug #832251) - fix a variety of markup nits Someone should backport this patch to Python 2.3.x. | ||||
* | Get rid of gcc warning. | Hye-Shik Chang | 2004-03-25 | 1 | -1/+2 |
| | |||||
* | include the right index sources | Fred Drake | 2004-03-25 | 1 | -2/+2 |
| | |||||
* | remove duplicate use of the meta-data label | Fred Drake | 2004-03-25 | 1 | -1/+0 |
| | |||||
* | Correct code to advance ptr to be well-formed C. | Martin v. Löwis | 2004-03-25 | 1 | -1/+1 |
| | |||||
* | fix typo | Fred Drake | 2004-03-25 | 1 | -1/+1 |
| | |||||
* | note that distutils API docs are included in "Distributing Python | Fred Drake | 2004-03-25 | 1 | -1/+2 |
| | | | | Modules" | ||||
* | improve the very-high-level API docs (contributed by Jeff Epler) | Fred Drake | 2004-03-25 | 1 | -34/+180 |
| | | | | Closes SF patch #798638. | ||||
* | Defer compilation of regular expressions until first use. | Martin v. Löwis | 2004-03-25 | 1 | -3/+7 |
| | |||||
* | Remove note that PyErr_SetInterrupt() is obsolete; add comment about the | Fred Drake | 2004-03-25 | 1 | -1/+3 |
| | | | | | fact that it was marked obsolete but is still needed. Closes SF bug #919299. Someone else should backport this to Python 2.3. |