Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of support for Universal Headers older than 3.4 and various other | Jack Jansen | 2002-12-13 | 10 | -78/+6 |
| | | | | outdated things. | ||||
* | Get rid of 2.2 "poor mans universal newlines" now that the real thing | Jack Jansen | 2002-12-13 | 1 | -19/+0 |
| | | | | is implemented. | ||||
* | It was an old MacPython artefact that these files were still in the source | Jack Jansen | 2002-12-13 | 22 | -4128/+0 |
| | | | | | tree. Removed them, anyone really desparate to recover them can get them from the CVS repository. | ||||
* | Tkinter isn't supported under Carbon. Under MacOSX native it is, but | Jack Jansen | 2002-12-13 | 3 | -975/+0 |
| | | | | that version doesn't need these workarounds. | ||||
* | Very outdated: this is a 68K support file. | Jack Jansen | 2002-12-13 | 1 | -290/+0 |
| | |||||
* | Add Tkinter threading change | Andrew M. Kuchling | 2002-12-13 | 1 | -3/+17 |
| | | | | | Fix markup errors Rewrite a sentence | ||||
* | and now the real fix... | Just van Rossum | 2002-12-13 | 1 | -5/+2 |
| | |||||
* | fixed bool browsing bug, sf bug #652591 | Just van Rossum | 2002-12-13 | 1 | -0/+1 |
| | |||||
* | Prevent debugger from stepping into Idle rpc code | Chui Tey | 2002-12-12 | 1 | -5/+17 |
| | |||||
* | Patch #536661: Improve performance of splitext. Add test_macpath. | Martin v. Löwis | 2002-12-12 | 6 | -42/+95 |
| | |||||
* | Patch #629126: Detect BLT by also looking for libBLT. | Martin v. Löwis | 2002-12-12 | 1 | -0/+4 |
| | |||||
* | Patch #650653: Raise always value error if the table is not 256 bytes long. | Martin v. Löwis | 2002-12-12 | 2 | -6/+8 |
| | |||||
* | Description of description was really confusing, and added some markup. | Thomas Heller | 2002-12-12 | 1 | -10/+10 |
| | |||||
* | M CallTipWindow.py | Kurt B. Kaiser | 2002-12-12 | 2 | -15/+34 |
| | | | | | | | | 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. | ||||
* | Change issubclass() so that recursive tuples (directly or indirectly | Walter Dörwald | 2002-12-12 | 3 | -6/+24 |
| | | | | | | containing class objects) are allowed as the second argument. This makes issubclass() more similar to isinstance() where recursive tuples are allowed too. | ||||
* | Mention the bdist_wininst postinstall script. | Thomas Heller | 2002-12-12 | 1 | -0/+3 |
| | |||||
* | Always initialize objc. | Martin v. Löwis | 2002-12-12 | 1 | -1/+1 |
| | |||||
* | Raw documentation for the bdist_wininst postinstallation script. | Thomas Heller | 2002-12-12 | 1 | -0/+78 |
| | | | | | | | | | | 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? | ||||
* | Patch #551960: Add check for setrlimit() support | Jason Tishler | 2002-12-12 | 1 | -4/+12 |
| | | | | | | | | | | 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. | ||||
* | News item for the change to turn _codecs into a builtin module. | Marc-André Lemburg | 2002-12-12 | 1 | -0/+4 |
| | |||||
* | Patch to make _codecs a builtin module. This is necessary since | Marc-André Lemburg | 2002-12-12 | 4 | -9/+17 |
| | | | | | | | 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 | ||||
* | Typo fix. | Greg Ward | 2002-12-12 | 1 | -1/+1 |
| | |||||
* | Hardcode the recognized whitespace characters to the US-ASCII whitespace | Greg Ward | 2002-12-12 | 1 | -3/+12 |
| | | | | chars. See the comment for rationale. | ||||
* | Support threads-enabled Tcl installations. | Martin v. Löwis | 2002-12-12 | 1 | -118/+525 |
| | |||||
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 7 | -37/+80 |
| | | | | | | | | | | | 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. | ||||
* | Patch #651621, approved by MvL. | Just van Rossum | 2002-12-12 | 2 | -7/+16 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | Getting rid of pre-Carbon (MacOS8) support. All code depending on | Jack Jansen | 2002-12-12 | 54 | -5242/+100 |
| | | | | | | 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). | ||||
* | Correct buggy module docstring. | Jeremy Hylton | 2002-12-11 | 1 | -17/+30 |
| | | | | | | Replace use of homebrew boolean with True/False. Reflow lots more long lines. | ||||
* | Fix one bug and reformat lots of code. | Jeremy Hylton | 2002-12-11 | 1 | -50/+72 |
| | | | | | | | | | 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. | ||||
* | This is not used anymore. | Martin v. Löwis | 2002-12-11 | 2 | -1003/+0 |
| | |||||
* | Made the _ssl subproject depend on the w9xpopen subproject, because | Tim Peters | 2002-12-11 | 1 | -20/+23 |
| | | | | build_ssl.py requires os.popen(). | ||||
* | Add OSS mixer interface (from Nicholas FitzRoy-Dale <wzdd@lardcave.net>): | Greg Ward | 2002-12-11 | 1 | -0/+267 |
| | | | | | | | | | | | * 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 | ||||
* | Various additions and changes suggested by Raymond Hettinger | Andrew M. Kuchling | 2002-12-11 | 1 | -16/+85 |
| | |||||
* | Prepare for the coming mixer support patch: change _do_ioctl_0() and | Greg Ward | 2002-12-11 | 1 | -14/+14 |
| | | | | | _do_ioctl_1() so they take a file descriptor rather than an oss_t pointer. | ||||
* | Finish expunging the 'linuxaudiodev' name: | Greg Ward | 2002-12-11 | 1 | -55/+55 |
| | | | | | | | * 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>. | ||||
* | Constify filenames and scripts. Fixes #651362. | Martin v. Löwis | 2002-12-11 | 12 | -121/+126 |
| | |||||
* | Tweak generation of unicode_whitespace_trans -- clearer, more | Greg Ward | 2002-12-11 | 1 | -2/+3 |
| | | | | efficient. Suggested by MAL. | ||||
* | Constify char* API. Fixes #651363. 2.2 candidate. | Martin v. Löwis | 2002-12-11 | 2 | -6/+6 |
| | |||||
* | Patch #650415: Avoid redefinition of macros. | Martin v. Löwis | 2002-12-11 | 1 | -0/+12 |
| | |||||
* | Patch #650422: Use Posix AF_ constants instead of PF_ ones. | Martin v. Löwis | 2002-12-11 | 1 | -5/+7 |
| | |||||
* | Patch #650834: Document 'U' in file mode, remove stale variables. | Martin v. Löwis | 2002-12-11 | 1 | -5/+1 |
| | |||||
* | Patch #651006: Better explain what component might be empty. | Martin v. Löwis | 2002-12-11 | 1 | -1/+1 |
| | |||||
* | Patch #651289: Fix quoting errors. | Martin v. Löwis | 2002-12-11 | 2 | -7/+7 |
| | |||||
* | Clean-up test class for DictMixin. | Raymond Hettinger | 2002-12-11 | 1 | -2/+6 |
| | |||||
* | Update comments about the performance of xrange(). | Raymond Hettinger | 2002-12-11 | 2 | -4/+4 |
| | |||||
* | Update to reflect current implementation. | Kurt B. Kaiser | 2002-12-11 | 1 | -78/+76 |
| | |||||
* | Rework the command line interface, incorporating the shell/edit | Kurt B. Kaiser | 2002-12-11 | 1 | -72/+136 |
| | | | | | | configuration selection. Rework the usage message to match. Also some minor code polishing. | ||||
* | Added a word to the heapq description in response to user confusion. | Tim Peters | 2002-12-10 | 1 | -2/+3 |
| | |||||
* | Install the tools/i18n directory on Windows. A user requested it, | Tim Peters | 2002-12-10 | 1 | -0/+8 |
| | | | | Barry agreed, and I see no reason not to. | ||||
* | Added test_ossaudiodev to expected skips on Windows. | Tim Peters | 2002-12-10 | 1 | -0/+1 |
| |