Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | If a --python option is used to specify the Python to use in the #! | Jack Jansen | 2003-07-04 | 1 | -1/+4 |
| | | | | line also use this as the executable in the bundle. | ||||
* | Fixes bug of timezone value being left as -1 when ``time.tzname[0] == | Brett Cannon | 2003-07-03 | 2 | -7/+8 |
| | | | | | | | time.tzname[1] and not time.daylight`` is true when it should only when time.daylight is true. Tests are also fixed. Closes bug #763047 and its cohort #763052. | ||||
* | Addendum to #764548: restore 2.1 compatibility. | Just van Rossum | 2003-07-02 | 2 | -3/+9 |
| | |||||
* | Fix and test for bug #764548: | Just van Rossum | 2003-07-02 | 3 | -7/+17 |
| | | | | | | Use isinstance() instead of comparing types directly, to enable subclasses of str and unicode to be used as patterns. Blessed by /F. | ||||
* | fixed typo in comment | Just van Rossum | 2003-07-02 | 1 | -1/+1 |
| | |||||
* | On those systems lacking the AFMT_S16_NE symbol, the test was failing | Andrew MacIntyre | 2003-07-02 | 1 | -1/+1 |
| | | | | | | | because it was still looking in the ossaudiodev module namespace for this symbol. As the symbol has already been rebound as a global, use that instead. | ||||
* | SF #764121, docstring for spawnlp incorrect | Neal Norwitz | 2003-07-02 | 1 | -1/+1 |
| | |||||
* | Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel | Neal Norwitz | 2003-07-01 | 1 | -2/+4 |
| | | | | | Tk 8.4 may return different values than 8.3. This fix should handle either version. | ||||
* | - added (c)StringIO tests; cStringIO usage failed in the previous | Just van Rossum | 2003-07-01 | 1 | -0/+16 |
| | | | | version of plistlib.py (r1.2) | ||||
* | - replaced a couple of asserts with proper exceptions | Just van Rossum | 2003-07-01 | 1 | -4/+5 |
| | | | | - use isinstance instead of flaky file-detection code | ||||
* | Make the classes exposed by threading.py new-style classes. This is | Tim Peters | 2003-07-01 | 1 | -3/+7 |
| | | | | mostly for convenience and to aid debugging. | ||||
* | Resolved minor XXX question in the obvious way. | Tim Peters | 2003-07-01 | 1 | -1/+1 |
| | |||||
* | Fix SF bug #763023, difflib.py: ratio() zero division not caught | Neal Norwitz | 2003-07-01 | 2 | -3/+20 |
| | | | | Backport candidate | ||||
* | connector(): You can't use an empty string as an argument to connect() | Tim Peters | 2003-07-01 | 1 | -1/+1 |
| | | | | on Windows. | ||||
* | Fix SF bug #763770, test_socket_ssl crash | Neal Norwitz | 2003-07-01 | 1 | -2/+2 |
| | | | | Don't run any tests if there is no ssl support. | ||||
* | Test Brett's addition of __all__ to Queue. | Raymond Hettinger | 2003-07-01 | 1 | -0/+1 |
| | |||||
* | Add __all__ . | Brett Cannon | 2003-07-01 | 1 | -0/+2 |
| | |||||
* | Fix SF #763362, test_posixpath failed | Neal Norwitz | 2003-07-01 | 1 | -4/+6 |
| | | | | | Don't check expanduser('~') if the home directory == the root directory (ie, we are running as root). | ||||
* | Fix typo in error message | Neal Norwitz | 2003-06-30 | 1 | -1/+1 |
| | |||||
* | Don't require that a RuntimeError is raised when playing a second | Walter Dörwald | 2003-06-30 | 1 | -5/+9 |
| | | | | | | | sound while the first one is still running, as the first one one might already have finished. Fixes part of SF bug #763052. | ||||
* | Fix SF 762891: "del p[key]" on proxy object raises SystemError() | Raymond Hettinger | 2003-06-30 | 1 | -0/+11 |
| | |||||
* | Fix SF #754870, SSL crash interpreter when remote side closes during connect | Neal Norwitz | 2003-06-30 | 1 | -1/+37 |
| | | | | Also fix a memory leak. | ||||
* | restore 2.2 compatibility: | Just van Rossum | 2003-06-29 | 1 | -11/+11 |
| | | | | | - don't use "abc" in aString - don't reorganize extension modules when not using zipimport | ||||
* | - added --semi-standalone option that builds apps that depend on an | Just van Rossum | 2003-06-29 | 1 | -26/+50 |
| | | | | | | | installed Python, yet include any modules not in the std lib - reworked extension module inclusion code: put all .so files in a subdirectory of Contents/Resources/, but more importantly, correctly support extensions that are submodules. | ||||
* | More tests | Raymond Hettinger | 2003-06-29 | 1 | -3/+59 |
| | | | | | * Test with infinite inputs (using take() on the output) * Test whether GC can find and eliminate cycles. | ||||
* | Fix sf bug 666219: assertion error in httplib. | Jeremy Hylton | 2003-06-29 | 1 | -0/+4 |
| | | | | The obvious way for this assertion to fail is if the LineAndFileWrapper constructor is called when an empty line. Raise a BadStatusError before the call. | ||||
* | Whitespace normalization. | Tim Peters | 2003-06-29 | 1 | -2/+2 |
| | |||||
* | Remove stub settrace() and setprofile() calls. | Jeremy Hylton | 2003-06-29 | 1 | -8/+0 |
| | |||||
* | Fix grammar in comment. | Jeremy Hylton | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Jeremy Hylton | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | Add settrace() and setprofile() functions to the threading library. | Jeremy Hylton | 2003-06-29 | 1 | -0/+20 |
| | |||||
* | Provide dummy (do-nothing) settrace() and setprofile() functions until | Tim Peters | 2003-06-29 | 1 | -1/+9 |
| | | | | Jeremy can check in the real things. | ||||
* | Removed invalid test. | Raymond Hettinger | 2003-06-29 | 1 | -3/+0 |
| | | | | | | | | | Analysis by Bob Halley: The test seems to expect that if time.daylight is true, then the is_dst field of the tm structure will be 1 too. But this isn't the case, since daylight is true if the timezone does DST, *not* if DST is in effect. | ||||
* | SF bug #762455: Python segfaults when sys.stdout is changed in getattr | Raymond Hettinger | 2003-06-29 | 1 | -0/+15 |
| | | | | * Added unittest that fails before, but not after Neil's fix to ceval.c. | ||||
* | Whitespace normalization. | Tim Peters | 2003-06-29 | 5 | -8/+8 |
| | |||||
* | Some nifty doctest extensions from Jim Fulton, currently used in Zope3. | Tim Peters | 2003-06-29 | 1 | -0/+268 |
| | | | | | | | | | I won't have time to write real docs, but spent a lot of time adding comments to his code and fleshing out the exported functions' docstrings. There's probably opportunity to consolidate how docstrings get extracted too, and the new code for that is probably better than the old code for that (which strained mightily to recover from 2.2's new class/type gimmicks). | ||||
* | SF bug #430160: CGIHTTPServer.py POST bug using IE | Raymond Hettinger | 2003-06-29 | 1 | -2/+4 |
| | | | | | | Minor improvement to previous bugfix. Eating the remaining characters would lead to an endless loop without a termination test. | ||||
* | Add missing self. before curNode. This may need to be committed | Neal Norwitz | 2003-06-29 | 1 | -1/+1 |
| | | | | to PyXML, I'm not sure of the procedure. | ||||
* | SF patch #760257: add socket.timeout exception | Raymond Hettinger | 2003-06-29 | 1 | -2/+57 |
| | | | | | | (Contributed by Bob Halley) Add unittests for the new socket.timeout exception. | ||||
* | Fix arguments for instantiating InterpolationSyntaxError | Neal Norwitz | 2003-06-29 | 1 | -3/+3 |
| | |||||
* | Comment out cap, it was unused. | Neal Norwitz | 2003-06-29 | 1 | -1/+2 |
| | | | | Should all the commented out code be removed? | ||||
* | whitespace normalization | Neal Norwitz | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | remove unused import math | Neal Norwitz | 2003-06-29 | 1 | -1/+0 |
| | |||||
* | remove extra parameter from _java_getprop, remove duplicate imports | Neal Norwitz | 2003-06-29 | 1 | -2/+2 |
| | |||||
* | use == like all the other conditionals | Neal Norwitz | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | fix problems found by pychecker | Neal Norwitz | 2003-06-29 | 1 | -2/+3 |
| | |||||
* | Missed a spot where the new optional optionflags argument needed to get | Tim Peters | 2003-06-29 | 1 | -1/+1 |
| | | | | passed on. | ||||
* | Use http://www.python.org/packman as the base URL. Also upped the version | Jack Jansen | 2003-06-29 | 1 | -3/+3 |
| | | | | number because of this. | ||||
* | SF 662923: iterator for dbm keys | Raymond Hettinger | 2003-06-28 | 1 | -1/+2 |
| | | | | | When shelve and the bsdbm where expanded to a full mapping interface, this module was missed. | ||||
* | Add take() to examples. Tighten the islice() example | Raymond Hettinger | 2003-06-28 | 1 | -1/+7 |
| |