Fred Drake
6675881aab
There's a better way to deal with the "comment" environment; I found
...
this in SF patch #732174 .
2003-07-02 14:44:08 +00:00
Just van Rossum
6802c6e764
fixed typo in comment
2003-07-02 14:36:59 +00:00
Fred Drake
629dd99802
Make the "install schema" tables follow the same table style we use
...
elsewhere (lines between columns).
2003-07-02 14:33:11 +00:00
Fred Drake
89de74ee94
The Macintosh Modules Reference now formats to GNU info without errors
...
(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.
2003-07-02 14:25:04 +00:00
Fred Drake
3b09558710
Fill out the set of macros and environments supported somewhat.
...
Some of this is still pretty iffy.
2003-07-02 14:22:48 +00:00
Andrew MacIntyre
348c261fe6
On those systems lacking the AFMT_S16_NE symbol, the test was failing
...
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.
2003-07-02 14:05:08 +00:00
Andrew MacIntyre
abccf41a7d
FreeBSD 5.x has moved some library routines and typedefs outside the
...
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.
2003-07-02 13:53:25 +00:00
Fred Drake
1ec0bdf899
The datetime C API really isn't usable outside the datetime module
...
implementation, so remove this decoy (it break formatting of the GNU
info version of the docs).
2003-07-02 13:42:51 +00:00
Fred Drake
2884d6de15
Fix a variety of small markup nits.
2003-07-02 12:27:43 +00:00
Jack Jansen
e2ff8be761
Moved the IDE tutorial to a directory with a shorter name. The long
...
name was giving problems with some tar implementations.
2003-07-02 09:20:09 +00:00
Neal Norwitz
b7f6810a1f
SF #764121 , docstring for spawnlp incorrect
2003-07-02 02:49:33 +00:00
Neal Norwitz
3c0f2c91ad
Fix SF bug #763637 , 2.3b2 unpack tuple of wrong size in after_cancel
...
Tk 8.4 may return different values than 8.3. This fix should handle
either version.
2003-07-01 21:12:47 +00:00
Just van Rossum
bcc58e87e8
- added (c)StringIO tests; cStringIO usage failed in the previous
...
version of plistlib.py (r1.2)
2003-07-01 20:22:30 +00:00
Just van Rossum
94af32e244
- replaced a couple of asserts with proper exceptions
...
- use isinstance instead of flaky file-detection code
2003-07-01 20:15:38 +00:00
Neal Norwitz
21d896cfa1
Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros
2003-07-01 20:15:21 +00:00
Tim Peters
59aba128a5
Make the classes exposed by threading.py new-style classes. This is
...
mostly for convenience and to aid debugging.
2003-07-01 20:01:55 +00:00
Tim Peters
0939fac795
Resolved minor XXX question in the obvious way.
2003-07-01 19:28:44 +00:00
Fred Drake
3ede7848a9
- note that super() only applies to new-style classes;
...
closes SF bug #764003
- fix markup for consistency
2003-07-01 16:31:26 +00:00
Fred Drake
901a41e757
normalize markup for consistency
2003-07-01 16:17:50 +00:00
Neal Norwitz
754a174b4b
Remove carriage returns
2003-07-01 15:03:49 +00:00
Neal Norwitz
e7dfe21bed
Fix SF bug #763023 , difflib.py: ratio() zero division not caught
...
Backport candidate
2003-07-01 14:59:46 +00:00
Tim Peters
37ca8c12dc
connector(): You can't use an empty string as an argument to connect()
...
on Windows.
2003-07-01 14:49:32 +00:00
Tim Peters
93ceaea01f
showwarning() calls formatwarning(), not showwarning().
...
Bugfix candidate.
2003-07-01 14:37:59 +00:00
Neal Norwitz
1787a0b1cc
Fix SF bug #763770 , test_socket_ssl crash
...
Don't run any tests if there is no ssl support.
2003-07-01 13:44:28 +00:00
Raymond Hettinger
9c8f78deab
Improve the wording a bit
2003-07-01 07:19:17 +00:00
Raymond Hettinger
69d6356eb9
Fix spelling, grammar, usage, and markup.
2003-07-01 06:29:18 +00:00
Raymond Hettinger
8ee006097f
SF #751062 : Tutorial: remove string exceptions, add parnassus, #posts
...
(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
2003-07-01 06:19:34 +00:00
Raymond Hettinger
cc0a664669
Test Brett's addition of __all__ to Queue.
2003-07-01 05:49:02 +00:00
Brett Cannon
b42bb5a88a
Add __all__ .
2003-07-01 05:34:27 +00:00
Brett Cannon
20def8bb19
Make temporary change of using _strptime for time.strptime permanent.
...
Flesh out docs to better explain time.strptime (closes bug #697990 ).
2003-07-01 05:16:08 +00:00
Neal Norwitz
592c4cc460
SF bug 753592, websucker bug
...
Pass the proper variable when the user supplies a directory.
Will backport.
2003-07-01 04:14:28 +00:00
Neal Norwitz
168e73d25e
Fix SF #763362 , test_posixpath failed
...
Don't check expanduser('~') if the home directory == the root directory
(ie, we are running as root).
2003-07-01 03:33:31 +00:00
Mark Hammond
0ccda1ee10
Support 'mbcs' as a 'built-in' encoding, so the C API can use it without
...
defering to the encodings package.
As described in [ 763111 ] mbcs encoding should skip encodings package
2003-07-01 00:13:27 +00:00
Neal Norwitz
ecc7171007
Add versionadded info for the 2 new threading module functions
2003-06-30 21:47:47 +00:00
Thomas Heller
675580f4fc
Document the DISTUTILS_DEBUG variable.
...
Closes sf #761401 .
Backport candidate.
2003-06-30 19:33:29 +00:00
Neal Norwitz
3106817c68
Fix typo in error message
2003-06-30 19:22:12 +00:00
Fred Drake
220e83946d
We are now post-beta 2.
2003-06-30 13:38:38 +00:00
Fred Drake
f647b63624
Added missing name (textwrap.dedent() docs).
2003-06-30 12:18:52 +00:00
Walter Dörwald
8bcbe6aa7e
Don't require that a RuntimeError is raised when playing a second
...
sound while the first one is still running, as the first one
one might already have finished.
Fixes part of SF bug #763052 .
2003-06-30 11:57:52 +00:00
Raymond Hettinger
ccd615c1a7
SF bug #762990 : Awful Grammar in Python Tutorial
...
Fixed a nit.
2003-06-30 04:27:31 +00:00
Raymond Hettinger
d693a81595
Fix SF 762891: "del p[key]" on proxy object raises SystemError()
2003-06-30 04:18:48 +00:00
Raymond Hettinger
562a855da0
Merge branch updates back into the main trunk
2003-06-30 03:35:06 +00:00
Neal Norwitz
a9002f824b
Fix SF #754870 , SSL crash interpreter when remote side closes during connect
...
Also fix a memory leak.
2003-06-30 03:25:20 +00:00
Tim Peters
b346096b65
Bump version string to "2.3b2+".
2003-06-30 02:14:28 +00:00
Neal Norwitz
4730880d76
Fix typo, refer to proper argument name
2003-06-30 01:54:04 +00:00
Just van Rossum
79b0ae12fd
restore 2.2 compatibility:
...
- don't use "abc" in aString
- don't reorganize extension modules when not using zipimport
2003-06-29 22:20:26 +00:00
Just van Rossum
762d2cce6f
- added --semi-standalone option that builds apps that depend on an
...
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.
2003-06-29 21:54:12 +00:00
Raymond Hettinger
0242070d04
More tests
...
* Test with infinite inputs (using take() on the output)
* Test whether GC can find and eliminate cycles.
2003-06-29 20:36:23 +00:00
Fred Drake
5728815e7b
Fix broken markup, & tweak a couple of things for consistency.
2003-06-29 18:12:23 +00:00
Jeremy Hylton
b67695238d
Fix sf bug 666219: assertion error in httplib.
...
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.
2003-06-29 17:55:05 +00:00