Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF #751062: Tutorial: remove string exceptions, add parnassus, #posts | Raymond Hettinger | 2003-07-01 | 1 | -8/+9 |
| | | | | | | | | (Contributed by Gerritt Holl) * Remove the last mentions of string exceptions * Reference a third-party repository of programs * Minor clarification of comp.lang.py posting volumes | ||||
* | 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 |
| | |||||
* | Make temporary change of using _strptime for time.strptime permanent. | Brett Cannon | 2003-07-01 | 3 | -49/+15 |
| | | | | Flesh out docs to better explain time.strptime (closes bug #697990). | ||||
* | SF bug 753592, websucker bug | Neal Norwitz | 2003-07-01 | 2 | -1/+3 |
| | | | | | Pass the proper variable when the user supplies a directory. Will backport. | ||||
* | 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). | ||||
* | Support 'mbcs' as a 'built-in' encoding, so the C API can use it without | Mark Hammond | 2003-07-01 | 1 | -0/+19 |
| | | | | | defering to the encodings package. As described in [ 763111 ] mbcs encoding should skip encodings package | ||||
* | Add versionadded info for the 2 new threading module functions | Neal Norwitz | 2003-06-30 | 1 | -0/+2 |
| | |||||
* | Document the DISTUTILS_DEBUG variable. | Thomas Heller | 2003-06-30 | 1 | -0/+21 |
| | | | | | | Closes sf #761401. Backport candidate. | ||||
* | Fix typo in error message | Neal Norwitz | 2003-06-30 | 1 | -1/+1 |
| | |||||
* | We are now post-beta 2. | Fred Drake | 2003-06-30 | 1 | -2/+2 |
| | |||||
* | Added missing name (textwrap.dedent() docs). | Fred Drake | 2003-06-30 | 1 | -0/+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. | ||||
* | SF bug #762990: Awful Grammar in Python Tutorial | Raymond Hettinger | 2003-06-30 | 1 | -1/+1 |
| | | | | Fixed a nit. | ||||
* | Fix SF 762891: "del p[key]" on proxy object raises SystemError() | Raymond Hettinger | 2003-06-30 | 3 | -1/+49 |
| | |||||
* | Merge branch updates back into the main trunk | Raymond Hettinger | 2003-06-30 | 1 | -0/+40 |
| | |||||
* | Fix SF #754870, SSL crash interpreter when remote side closes during connect | Neal Norwitz | 2003-06-30 | 2 | -2/+39 |
| | | | | Also fix a memory leak. | ||||
* | Bump version string to "2.3b2+". | Tim Peters | 2003-06-30 | 1 | -1/+1 |
| | |||||
* | Fix typo, refer to proper argument name | Neal Norwitz | 2003-06-30 | 1 | -1/+1 |
| | |||||
* | 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 broken markup, & tweak a couple of things for consistency. | Fred Drake | 2003-06-29 | 1 | -4/+4 |
| | |||||
* | 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. | ||||
* | Add several news items for changes I made since b1. | Jeremy Hylton | 2003-06-29 | 1 | -8/+36 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2003-06-29 | 1 | -2/+2 |
| | |||||
* | Removed XXX comments about missing threading.py functions. | Tim Peters | 2003-06-29 | 1 | -4/+0 |
| | |||||
* | Added news about os.environ['PYTHONINSPECT'] = 'yes' | Barry Warsaw | 2003-06-29 | 1 | -0/+5 |
| | |||||
* | Remove stub settrace() and setprofile() calls. | Jeremy Hylton | 2003-06-29 | 1 | -8/+0 |
| | |||||
* | Py_Main(): Add a check for the PYTHONINSPECT environment variable | Barry Warsaw | 2003-06-29 | 1 | -0/+9 |
| | | | | | | | | | | after running the script so that a program could do something like: os.environ['PYTHONINSPECT'] = 1 to programmatically enter a prompt at the end. (After a patch by Skip Montanaro w/ proposal by Troy Melhase | ||||
* | 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 | 2 | -0/+34 |
| | |||||
* | Typo repair. | Tim Peters | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | Update copyright years. | Fred Drake | 2003-06-29 | 1 | -1/+1 |
| | |||||
* | Provide dummy (do-nothing) settrace() and setprofile() functions until | Tim Peters | 2003-06-29 | 2 | -1/+13 |
| | | | | Jeremy can check in the real things. | ||||
* | Filled in release date; repaired grammar in a news item. | Tim Peters | 2003-06-29 | 1 | -3/+3 |
| | |||||
* | minor wordsmithing | Skip Montanaro | 2003-06-29 | 1 | -6/+6 |
| | |||||
* | 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. | ||||
* | FreeBSD 5.x uses different wchar_t/win_t guards than earlier versions | Andrew MacIntyre | 2003-06-29 | 1 | -0/+12 |
| | |||||
* | 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. | ||||
* | Fix SF #762455, segfault when sys.stdout is changed in getattr | Neal Norwitz | 2003-06-29 | 1 | -0/+6 |
| | | | | Will backport. | ||||
* | 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 | 2 | -0/+283 |
| | | | | | | | | | 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. | ||||
* | SF patch #760257: add socket.timeout exception | Raymond Hettinger | 2003-06-29 | 1 | -1/+9 |
| | | | | | | (Contributed by Bob Halley) Add documentation for the new socket.timeout exception. | ||||
* | Minor fixes to punctuation and grammar. | Raymond Hettinger | 2003-06-29 | 1 | -5/+5 |
| | |||||
* | 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 |
| |