- 13 Dec, 2002 9 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
outdated things.
-
Jack Jansen authored
is implemented.
-
Jack Jansen authored
tree. Removed them, anyone really desparate to recover them can get them from the CVS repository.
-
Jack Jansen authored
that version doesn't need these workarounds.
-
Jack Jansen authored
-
Andrew M. Kuchling authored
Fix markup errors Rewrite a sentence
-
Just van Rossum authored
-
Just van Rossum authored
-
- 12 Dec, 2002 19 commits
-
-
Chui Tey authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Thomas Heller authored
-
Kurt B. Kaiser authored
M CallTips.py Calltip fetch was erroring when an Edit window was used without a Shell. Also, fix CallTipWindow.py so test code will run and add a comment about a bug which causes the calltip window to override all others.
-
Walter Dörwald authored
containing class objects) are allowed as the second argument. This makes issubclass() more similar to isinstance() where recursive tuples are allowed too.
-
Thomas Heller authored
-
Martin v. Löwis authored
-
Thomas Heller authored
People are already using it, so these docs are certainly better than no docs at all. Markup is mostly missing and the layout is probably ugly, but this can be fixed later. Question: there are references to MS docs for the CSIDL_... constants and the IShellLink interface. Are these pointers sufficient, or should the MS docs reworded and repeated here?
-
Jason Tishler authored
test_resource calls resource.setrlimit() to change the file size limits. This fails on Cygwin, which supports setrlimit() and getrlimit(), just not changing that particular setting. (The same would apply to any other platform that has those functions but not that particular feature.) Since getrlimit() works and setrlimit() can be used for other reasons, a check for ValueError was added to that part of the test.
-
Marc-André Lemburg authored
-
Marc-André Lemburg authored
Python 2.3 will support source code encodings which rely on the builtin codecs being available to the parser. Remove struct dependency from codecs.py
-
Greg Ward authored
-
Greg Ward authored
chars. See the comment for rationale.
-
Martin v. Löwis authored
-
Walter Dörwald authored
supported as the second argument. This has the same meaning as for isinstance(), i.e. issubclass(X, (A, B)) is equivalent to issubclass(X, A) or issubclass(X, B). Compared to isinstance(), this patch does not search the tuple recursively for classes, i.e. any entry in the tuple that is not a class, will result in a TypeError. This closes SF patch #649608.
-
Just van Rossum authored
This patch allows ZipFile.writestr() to be called with an archive file name instead of a ZipInfo instance: z = ZipFile("myarchive.zip", "w") z.writestr("foo/baz/file.ext", data) z.close() I found the old writestr() method very inconvenient for simple (but common) things. If called with a file name instead of a ZipInfo instance, the date_time is set to the current date/time, which makes sense to me for anonymous data.
-
Jack Jansen authored
TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some TARGET_API_MAC_OSX conditional code is gone, because it is no longer used on OSX-only Python (only in MacPython-OS9).
-
- 11 Dec, 2002 12 commits
-
-
Jeremy Hylton authored
Replace use of homebrew boolean with True/False. Reflow lots more long lines.
-
Jeremy Hylton authored
The bug is a reference to co_first_lineno that should be co_firstlineno. The only other substantial change is to speed up localtrace_count() by avoiding *costly* calls to inspect module. It's trivial to get the filename and lineno directly from the frame. Otherwise, delete commented out debug code and reflow very long lines.
-
Martin v. Löwis authored
-
Tim Peters authored
build_ssl.py requires os.popen().
-
Greg Ward authored
* add oss_mixer_t and OSSMixerType * add newossmixerobject(), oss_mixer_dealloc(), ossopenmixer() * add _do_ioctl_1_internal() to support mixer ioctls * add mixer methods: oss_mixer_{close,fileno,channels,stereo_channels, rec_channels,getvol,setvol,getrecsrc,setrecsrc}() * add oss_mixer_methods list * add oss_mixer_getattr() (why?!) * export SOUND_MIXER_* constants from soundcard.h
-
Andrew M. Kuchling authored
-
Greg Ward authored
_do_ioctl_1() so they take a file descriptor rather than an oss_t pointer.
-
Greg Ward authored
* rename oss_t to lad_t, Ladtype to OSSType, * rename lad_*() methods to oss_*() * rename lad_methods list to oss_methods Patch and impetus supplied by Nicholas FitzRoy-Dale <wzdd@lardcave.net>.
-
Martin v. Löwis authored
-
Greg Ward authored
efficient. Suggested by MAL.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-