Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - 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. | ||||
* | Use True/False instead of 0/1 for character classes. | Martin v. Löwis | 2004-03-25 | 1 | -6/+6 |
| | |||||
* | SF bug: #921927: Fixed a typo/thinko spelling "parameter" as "paramter" | Raymond Hettinger | 2004-03-25 | 2 | -3/+3 |
| | |||||
* | Ensure super() lookup of descriptor from classmethod works (SF #743627) | Phillip J. Eby | 2004-03-25 | 2 | -1/+22 |
| | |||||
* | A few more PyThreadState_Get to PyThreadState_GET conversions | Nicholas Bastin | 2004-03-25 | 3 | -3/+3 |
| | |||||
* | fix name in setacl method doc string | Piers Lauder | 2004-03-25 | 1 | -1/+1 |
| | |||||
* | Changed random calls to PyThreadState_Get() to use the macro | Nicholas Bastin | 2004-03-24 | 8 | -26/+26 |
| | |||||
* | Enable the profiling of C functions (builtins and extensions) | Nicholas Bastin | 2004-03-24 | 10 | -15/+145 |
| | |||||
* | Add test case for unicode(somestring, "idna"). | Martin v. Löwis | 2004-03-24 | 1 | -1/+6 |
| | |||||
* | Replace sequential split/join calls on strings with a single replace call. | Brett Cannon | 2004-03-23 | 2 | -11/+5 |
| | | | | Thanks Andrew Gaul. | ||||
* | Convert input to a string object. Fixes #909230. | Martin v. Löwis | 2004-03-23 | 1 | -0/+1 |
| | | | | Backported 2.3. | ||||
* | ...for work done at PyCon 2004 (and beyond...) | Nicholas Bastin | 2004-03-23 | 1 | -0/+1 |
| | |||||
* | Make socket.sslerror a subclass of socket.error . | Brett Cannon | 2004-03-23 | 4 | -1/+9 |
| | | | | Added socket.error to the socket module's C API. | ||||
* | more markup nits | Fred Drake | 2004-03-23 | 1 | -12/+13 |
| | |||||
* | Replace code in urllib for basejoin (undocumented) with urlparse.urljoin . | Brett Cannon | 2004-03-23 | 1 | -59/+2 |
| | | | | | | | Test suites for urllib and urlparse run with each other's function to verify correctness of replacement and both test suites pass. Bumped urllib's __version__ attribute up a minor number. | ||||
* | fix markup nits | Fred Drake | 2004-03-23 | 1 | -4/+4 |
| | |||||
* | add the distutils modules to the global modules list | Fred Drake | 2004-03-23 | 1 | -1/+3 |
| | |||||
* | Add runctx to __all__. | Guido van Rossum | 2004-03-23 | 1 | -1/+1 |
| | |||||
* | give the document indexes | Fred Drake | 2004-03-23 | 1 | -0/+16 |
| | |||||
* | - use recommended Python style in examples (no spaces around "=" for | Fred Drake | 2004-03-23 | 1 | -59/+83 |
| | | | | | | | | keyword args) - format multi-line calls to distutils.core.setup() consistently, and in line with general practice (one keyword arg per line, comma/newline after the last - fix a few typos | ||||
* | Added command line options for profile.py - one for stats output file | Nicholas Bastin | 2004-03-23 | 3 | -13/+39 |
| | | | | and one for sort order when using stdout. Uses optparse. | ||||
* | merge Anthony Baxter's distutils API reference into the package | Fred Drake | 2004-03-23 | 1 | -1/+1541 |
| | | | | author's documentation | ||||
* | Intern __name__. | Martin v. Löwis | 2004-03-23 | 1 | -1/+9 |
| | |||||
* | Decref all if ensure_fromlist fails. Fixes #876533. | Martin v. Löwis | 2004-03-23 | 1 | -2/+3 |
| | | | | Backported to 2.3. | ||||
* | Basic dependency checking. setup() has two new optional arguments | Anthony Baxter | 2004-03-22 | 5 | -3/+144 |
| | | | | | | | | | | | | | | | | | | | | | | | requires and provides. requires is a sequence of strings, of the form 'packagename-version'. The dependency checking so far merely does an '__import__(packagename)' and checks for packagename.__version__ You can also leave off the version, and any version of the package will be installed. There's a special case for the package 'python' - sys.version_info is used, so requires= ( 'python-2.3', ) just works. Provides is of the same format as requires - but if it's not supplied, a provides is generated by adding the version to each entry in packages, or modules if packages isn't there. Provides is currently only used in the PKG-INFO file. Shortly, PyPI will grow the ability to accept these lines, and register will be updated to send them. There's a new command 'checkdep' command that runs these checks. For this version, only greater-than-or-equal checking is done. We'll add the ability to specify an optional operator later. | ||||
* | Patch #911176: Move test function into __main__ | Martin v. Löwis | 2004-03-22 | 1 | -12/+12 |
| | |||||
* | convert from a howto to a manual | Fred Drake | 2004-03-22 | 1 | -29/+29 |
| |