Kurt B. Kaiser
39c7b45964
Update to reflect current implementation.
2002-12-11 04:42:39 +00:00
Kurt B. Kaiser
f06eed08a8
Rework the command line interface, incorporating the shell/edit
...
configuration selection. Rework the usage message to match.
Also some minor code polishing.
2002-12-11 04:42:04 +00:00
Tim Peters
85f7f83d71
Added a word to the heapq description in response to user confusion.
2002-12-10 21:04:25 +00:00
Tim Peters
598c210b5a
Install the tools/i18n directory on Windows. A user requested it,
...
Barry agreed, and I see no reason not to.
2002-12-10 19:03:52 +00:00
Tim Peters
efc4b12169
Added test_ossaudiodev to expected skips on Windows.
2002-12-10 18:47:56 +00:00
Greg Ward
55a8790c41
Aesthetic tweakery: factor read_sound_file() out of play_sound_file().
2002-12-10 16:27:35 +00:00
Greg Ward
36dacfa49c
Initial revision is rev 1.8 of test_linuxaudiodev.py, with
...
the obvious s/linuxaudiodev/ossaudiodev/ change made.
2002-12-10 16:24:21 +00:00
Neal Norwitz
731a986dfa
Upgrade to Tix-8.1.4 from Mike Clarkson (the maintainer)
2002-12-10 02:18:49 +00:00
Tim Peters
bca1cbc6f8
SF 548651: Fix the METH_CLASS implementation.
...
Most of these patches are from Thomas Heller, with long lines folded
by Tim. The change to test_descr.py is from Guido. See the bug report.
Not a bugfix candidate -- METH_CLASS is new in 2.3.
2002-12-09 22:56:13 +00:00
Greg Ward
c7e3c5e306
Add test_unicode() to ensure that 1) textwrap doesn't crash on unicode
...
input, and 2) unicode input means unicode output. This closes
SF bug #622831 .
2002-12-09 16:32:41 +00:00
Greg Ward
24cbbcb57f
Added test_initial_whitespace() to ensure that SF bug #622849 is fixed.
...
Change LongWordTestCase.setUp() -- remove leading whitespace from
text string.
Comment fix.
2002-12-09 16:27:15 +00:00
Greg Ward
ab73d46e45
Fix SF bug #622849 : in _wrap_chunks(), ensure that leading whitespace in
...
the input string is always preserved.
2002-12-09 16:26:05 +00:00
Greg Ward
2e74541d7e
Fix SF bug #622831 (I think): add unicode_whitespace_trans class
...
attribute, and modify _munge_whitespace() to recognize Unicode strings
and use unicode_whitespace_trans to munge them. Still need to add a
test to make sure I've really fixed the bug.
2002-12-09 16:23:08 +00:00
Raymond Hettinger
ef8b9c6616
Docs were added about a month ago
2002-12-09 08:56:06 +00:00
Skip Montanaro
123dc8ef72
self.binary -> self._binary to remove it from the public interface -
...
suggestion by Raymond Hettinger.
2002-12-08 21:25:00 +00:00
Skip Montanaro
3bf99e3e87
Add support for binary pickles to the shelve module. In some situations
...
this can result in significantly smaller files. All classes as well as the
open function now accept an optional binary parameter, which defaults to
False for backward compatibility. Added a small test suite, updated the
libref documentation (including documenting the exported classes and fixing
a few other nits) and added a note about the change to Misc/NEWS.
2002-12-08 18:36:24 +00:00
Tim Peters
ea7f75d423
slot_nb_nonzero(): Another leak uncovered by the sandbox datetime
...
tests. I found the logic too confusing to follow here, so rewrote more
than was likely absolutely necessary.
Bugfix candidate.
2002-12-07 21:39:16 +00:00
Fred Drake
27cae1f7c5
Revise the __all__ index entry a touch.
2002-12-07 16:00:00 +00:00
Martin v. Löwis
33ec3ba217
Remove C++ comment. Silence unsigned char* cast warning.
2002-12-07 14:57:11 +00:00
Martin v. Löwis
2fb661fb80
Remove C++ comment.
2002-12-07 14:56:36 +00:00
Martin v. Löwis
a37d61f1d6
Correct db3 /opt/sfw library path. Link ndbm with libc only if ndbm.h
...
is present and libndbm is not. Add runtime libs to dbm if linked against
Berkeley DB.
2002-12-07 14:41:17 +00:00
Raymond Hettinger
065c06a622
Add another test which exercises the whole suite with a
...
heapsort and verifies the result against list.sort().
2002-12-07 10:33:42 +00:00
Raymond Hettinger
c2e095f6f4
Fix typo in abstract.c which caused __rpow__ to not be invoked.
...
Added related testcase.
Closes SF bug #643260 .
2002-12-07 10:05:27 +00:00
Raymond Hettinger
f9229d98ae
Add __all__ to Reference Manual index.
...
Closes SF 643227.
2002-12-07 09:39:15 +00:00
Raymond Hettinger
c1ac194e94
Clarify and speedup test.
2002-12-07 09:25:05 +00:00
Raymond Hettinger
babc83a27a
Cleaned up test (removing bogus argument list).
2002-12-07 09:04:29 +00:00
Raymond Hettinger
e03e5b1f91
Remove assumption that cls is a subclass of dict.
...
Simplifies the code and gets Just van Rossum's example to work.
2002-12-07 08:10:51 +00:00
Tim Peters
4e52ca82ae
A patch from Kevin Jacobs, plugging several leaks discovered when
...
running the sandbox datetime tests.
Bugfix candidate.
2002-12-07 02:43:28 +00:00
Tim Peters
61ce0a9bae
slot_tp_hash(): In the normal path, this leaked a reference to the
...
integer hash object returned by __hash__(). This accounts for some of
the "mystery leaks" in the sandbox datetime tests, but probably not
all of them.
2002-12-06 23:38:02 +00:00
Thomas Heller
ead60e5d1c
Typo: propogate -> propagate
...
Bugfix candidate.
2002-12-06 22:42:13 +00:00
Kurt B. Kaiser
0930c43e43
M PyShell.py
...
1. Format and print exceptions raised in user code.
M rpc.py
1. Additional debug messages in rpc.py
2. Move debug message enable switch from SocketIO to Client and Server
to allow separate activation.
3. Add indication of origin (client or server) to debug message
4. Add sequence number to appropriate debug messages
5. Pass string exception arg as a string rather than a tuple.
2002-12-06 21:45:24 +00:00
Fred Drake
edb635ff5c
Remove extra ")" in example.
2002-12-06 18:52:28 +00:00
Fred Drake
08d10f985e
Typo: "dead lock" --> "deadlock"
2002-12-06 16:45:05 +00:00
Martin v. Löwis
9e43730ca3
Don't include <ioctl.h> unless on __VMS.
2002-12-06 12:57:26 +00:00
Martin v. Löwis
79acb9edfa
Patch #614055 : Support OpenVMS.
2002-12-06 12:48:53 +00:00
Martin v. Löwis
468742878f
Patch #649184 : Update to tix-8.1.4 RC3.
2002-12-06 10:33:45 +00:00
Martin v. Löwis
05d4d562d7
Search in standard library and include dirs for Sleepycat stuff.
...
Fixes #590377 .
2002-12-06 10:25:02 +00:00
Walter Dörwald
6d5f30eaed
Document that the second argument to PyObject_IsInstance
...
may be a tuple. This closes SF patch
http://www.python.org/sf/649095
Backport to release22-maint will follow.
2002-12-06 10:09:16 +00:00
Jack Jansen
5f61a05d7f
Fixed so the Res.Resource() accepts either another resource, a string
...
or no argument (giving an empty resource).
2002-12-05 23:26:38 +00:00
Jack Jansen
dd888a6cff
Fixed typo.
2002-12-05 23:20:12 +00:00
Michael W. Hudson
a69c030c15
The final tweaks before closing
...
[ 633152 ] list slice ass ignores subtypes of list
Allow arbitrary sequences on the RHS of extended slices.
2002-12-05 21:32:32 +00:00
Skip Montanaro
7bc2e1dad7
add logmerge.py (pydoc is already installed)
2002-12-05 21:12:34 +00:00
Jason Tishler
d0ebd7edb1
Patch #649060 : Cygwin bz2module patch
...
This patch enables the bz2 module to build cleanly under Cygwin.
2002-12-05 20:31:53 +00:00
Jason Tishler
e257ec9ef7
Patch #648998 : test_commands ACL patch
...
Although motived by Cygwin, this patch will prevent
test_commands from failing on Unixes that support
ACLs. For example, the following is an excerpt from
the Solaris ls manpage:
...
-rwxrwxrwx+ 1 smith dev 10876 May 16 9:42 part2
The plus sign indicates that there is an ACL associated
with the file.
...
2002-12-05 20:18:39 +00:00
Tim Peters
b0f89e05ad
Add a Cygwin skip mentioned by Jason Tishler.
2002-12-05 17:20:25 +00:00
Jason Tishler
2511594060
Patch #551977 : Regression exceptions for cygwin
...
This patch updates regrtest.py to understand which
tests are normally skipped under Cygwin. The list of
tests was verified with the Cygwin Python maintainer.
2002-12-05 15:18:15 +00:00
Skip Montanaro
da760c488f
simple setup.py to install some interesting scripts in $(prefix)/bin.
2002-12-05 02:58:36 +00:00
Skip Montanaro
a5f8c42268
* when given, port should be converted to int
...
* when connecting, if the port is non-standard, display it as well
2002-12-05 02:43:14 +00:00
Skip Montanaro
7dfb02d09a
allow optional port specified as part of the hostname, e.g.,
...
"www.zope.org:8021".
2002-12-05 02:37:23 +00:00
Martin v. Löwis
e07e18d41b
Decode untyped strings from UTF-8.
2002-12-04 19:54:36 +00:00