Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Grammar nit. SF bug #757822 | Raymond Hettinger | 2003-07-02 | 1 | -1/+1 |
| | |||||
* | Revert the previous change; this is now dealt with in a better way. | Fred Drake | 2003-07-02 | 1 | -0/+54 |
| | |||||
* | There's a better way to deal with the "comment" environment; I found | Fred Drake | 2003-07-02 | 1 | -0/+1 |
| | | | | this in SF patch #732174. | ||||
* | fixed typo in comment | Just van Rossum | 2003-07-02 | 1 | -1/+1 |
| | |||||
* | Make the "install schema" tables follow the same table style we use | Fred Drake | 2003-07-02 | 1 | -1/+1 |
| | | | | elsewhere (lines between columns). | ||||
* | The Macintosh Modules Reference now formats to GNU info without errors | Fred Drake | 2003-07-02 | 1 | -2/+2 |
| | | | | | | | | (which is not to say it's right), so re-enable it. Documenting Python and Installing Python Modules still have problems when converting to GNU info, so we'll continue to leave them out for now. | ||||
* | Fill out the set of macros and environments supported somewhat. | Fred Drake | 2003-07-02 | 1 | -0/+10 |
| | | | | Some of this is still pretty iffy. | ||||
* | 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. | ||||
* | FreeBSD 5.x has moved some library routines and typedefs outside the | Andrew MacIntyre | 2003-07-02 | 3 | -3/+20 |
| | | | | | | | | | | | | | | | scope of the _XOPEN_SOURCE and _POSIX_C_SOURCE symbols, including: - getloadavg() - typedefs for u_int, u_long, u_char, u_short, ushort & uint These are now all defined under the control of a __BSD_VISIBLE symbol. The lack of the typedefs causes several extension modules to build incorrectly or not at all, and is the cause of failures reported for test_socket and test_tempfile on this platform (see python-dev: 29/6/03, pieterb@gewis.nl, "Running tests on freebsd5") This change does not appear to be needed in the 2.2 branch. | ||||
* | The datetime C API really isn't usable outside the datetime module | Fred Drake | 2003-07-02 | 1 | -54/+0 |
| | | | | | implementation, so remove this decoy (it break formatting of the GNU info version of the docs). | ||||
* | Fix a variety of small markup nits. | Fred Drake | 2003-07-02 | 6 | -20/+21 |
| | |||||
* | Moved the IDE tutorial to a directory with a shorter name. The long | Jack Jansen | 2003-07-02 | 15 | -3/+3 |
| | | | | name was giving problems with some tar implementations. | ||||
* | 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 | 2 | -2/+7 |
| | | | | | 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 | ||||
* | Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros | Neal Norwitz | 2003-07-01 | 4 | -5/+5 |
| | |||||
* | Make the classes exposed by threading.py new-style classes. This is | Tim Peters | 2003-07-01 | 2 | -3/+10 |
| | | | | mostly for convenience and to aid debugging. | ||||
* | Resolved minor XXX question in the obvious way. | Tim Peters | 2003-07-01 | 1 | -1/+1 |
| | |||||
* | - note that super() only applies to new-style classes; | Fred Drake | 2003-07-01 | 1 | -2/+4 |
| | | | | | closes SF bug #764003 - fix markup for consistency | ||||
* | normalize markup for consistency | Fred Drake | 2003-07-01 | 1 | -15/+16 |
| | |||||
* | Remove carriage returns | Neal Norwitz | 2003-07-01 | 0 | -0/+0 |
| | |||||
* | Fix SF bug #763023, difflib.py: ratio() zero division not caught | Neal Norwitz | 2003-07-01 | 3 | -3/+23 |
| | | | | 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. | ||||
* | showwarning() calls formatwarning(), not showwarning(). | Tim Peters | 2003-07-01 | 1 | -1/+1 |
| | | | | Bugfix candidate. | ||||
* | 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. | ||||
* | Improve the wording a bit | Raymond Hettinger | 2003-07-01 | 1 | -1/+1 |
| | |||||
* | Fix spelling, grammar, usage, and markup. | Raymond Hettinger | 2003-07-01 | 1 | -2/+3 |
| | |||||
* | 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. |