summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Grammar nit. SF bug #757822Raymond Hettinger2003-07-021-1/+1
|
* Revert the previous change; this is now dealt with in a better way.Fred Drake2003-07-021-0/+54
|
* There's a better way to deal with the "comment" environment; I foundFred Drake2003-07-021-0/+1
| | | | this in SF patch #732174.
* fixed typo in commentJust van Rossum2003-07-021-1/+1
|
* Make the "install schema" tables follow the same table style we useFred Drake2003-07-021-1/+1
| | | | elsewhere (lines between columns).
* The Macintosh Modules Reference now formats to GNU info without errorsFred Drake2003-07-021-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 Drake2003-07-021-0/+10
| | | | Some of this is still pretty iffy.
* On those systems lacking the AFMT_S16_NE symbol, the test was failingAndrew MacIntyre2003-07-021-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 theAndrew MacIntyre2003-07-023-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 moduleFred Drake2003-07-021-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 Drake2003-07-026-20/+21
|
* Moved the IDE tutorial to a directory with a shorter name. The longJack Jansen2003-07-0215-3/+3
| | | | name was giving problems with some tar implementations.
* SF #764121, docstring for spawnlp incorrectNeal Norwitz2003-07-021-1/+1
|
* Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancelNeal Norwitz2003-07-012-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 previousJust van Rossum2003-07-011-0/+16
| | | | version of plistlib.py (r1.2)
* - replaced a couple of asserts with proper exceptionsJust van Rossum2003-07-011-4/+5
| | | | - use isinstance instead of flaky file-detection code
* Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macrosNeal Norwitz2003-07-014-5/+5
|
* Make the classes exposed by threading.py new-style classes. This isTim Peters2003-07-012-3/+10
| | | | mostly for convenience and to aid debugging.
* Resolved minor XXX question in the obvious way.Tim Peters2003-07-011-1/+1
|
* - note that super() only applies to new-style classes;Fred Drake2003-07-011-2/+4
| | | | | closes SF bug #764003 - fix markup for consistency
* normalize markup for consistencyFred Drake2003-07-011-15/+16
|
* Remove carriage returnsNeal Norwitz2003-07-010-0/+0
|
* Fix SF bug #763023, difflib.py: ratio() zero division not caughtNeal Norwitz2003-07-013-3/+23
| | | | Backport candidate
* connector(): You can't use an empty string as an argument to connect()Tim Peters2003-07-011-1/+1
| | | | on Windows.
* showwarning() calls formatwarning(), not showwarning().Tim Peters2003-07-011-1/+1
| | | | Bugfix candidate.
* Fix SF bug #763770, test_socket_ssl crashNeal Norwitz2003-07-011-2/+2
| | | | Don't run any tests if there is no ssl support.
* Improve the wording a bitRaymond Hettinger2003-07-011-1/+1
|
* Fix spelling, grammar, usage, and markup.Raymond Hettinger2003-07-011-2/+3
|
* SF #751062: Tutorial: remove string exceptions, add parnassus, #postsRaymond Hettinger2003-07-011-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 Hettinger2003-07-011-0/+1
|
* Add __all__ .Brett Cannon2003-07-011-0/+2
|
* Make temporary change of using _strptime for time.strptime permanent.Brett Cannon2003-07-013-49/+15
| | | | Flesh out docs to better explain time.strptime (closes bug #697990).
* SF bug 753592, websucker bugNeal Norwitz2003-07-012-1/+3
| | | | | Pass the proper variable when the user supplies a directory. Will backport.
* Fix SF #763362, test_posixpath failedNeal Norwitz2003-07-011-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 withoutMark Hammond2003-07-011-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 functionsNeal Norwitz2003-06-301-0/+2
|
* Document the DISTUTILS_DEBUG variable.Thomas Heller2003-06-301-0/+21
| | | | | | Closes sf #761401. Backport candidate.
* Fix typo in error messageNeal Norwitz2003-06-301-1/+1
|
* We are now post-beta 2.Fred Drake2003-06-301-2/+2
|
* Added missing name (textwrap.dedent() docs).Fred Drake2003-06-301-0/+1
|
* Don't require that a RuntimeError is raised when playing a secondWalter Dörwald2003-06-301-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 TutorialRaymond Hettinger2003-06-301-1/+1
| | | | Fixed a nit.
* Fix SF 762891: "del p[key]" on proxy object raises SystemError()Raymond Hettinger2003-06-303-1/+49
|
* Merge branch updates back into the main trunkRaymond Hettinger2003-06-301-0/+40
|
* Fix SF #754870, SSL crash interpreter when remote side closes during connectNeal Norwitz2003-06-302-2/+39
| | | | Also fix a memory leak.
* Bump version string to "2.3b2+".Tim Peters2003-06-301-1/+1
|
* Fix typo, refer to proper argument nameNeal Norwitz2003-06-301-1/+1
|
* restore 2.2 compatibility:Just van Rossum2003-06-291-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 anJust van Rossum2003-06-291-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 testsRaymond Hettinger2003-06-291-3/+59
| | | | | * Test with infinite inputs (using take() on the output) * Test whether GC can find and eliminate cycles.