Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - fix use of \refmodule markup | Fred Drake | 2002-12-30 | 4 | -13/+15 |
| | | | | | - correct some module names, add hyperlinks - wrap some long lines | ||||
* | News about zipimport. | Guido van Rossum | 2002-12-30 | 1 | -0/+16 |
| | |||||
* | Squashed compiler wng from MSVC6. | Tim Peters | 2002-12-30 | 1 | -1/+1 |
| | |||||
* | Wouldn't compile on Windows; fixed. | Tim Peters | 2002-12-30 | 1 | -1/+1 |
| | |||||
* | Added a note about the move of Mac/Lib to Lib/plat-mac. | Jack Jansen | 2002-12-30 | 1 | -0/+4 |
| | |||||
* | Use the dummy_thread module in Queue.py and tempfile.py. | Guido van Rossum | 2002-12-30 | 2 | -7/+7 |
| | | | | | tempfile.py already contained code to let it run without threads present; for Queue.py this is considered a useful feature too. | ||||
* | Add dummy_thread[ing] sections and reference these from libthread[ing]. | Guido van Rossum | 2002-12-30 | 3 | -1/+8 |
| | |||||
* | Brett Cannon's dummy_thread and dummy_threading modules (SF patch | Guido van Rossum | 2002-12-30 | 6 | -0/+460 |
| | | | | 622537), with some nitpicking editorial changes. | ||||
* | SF #561244, Micro optimizations | Neal Norwitz | 2002-12-30 | 5 | -19/+44 |
| | | | | | | Initialize the small integers and __builtins__ in startup. This removes some if conditions. Change XDECREF to DECREF for values which shouldn't be NULL. | ||||
* | Adapted for the move of Mac/Lib to Lib/plat-mac. Makefile.pre.in now | Jack Jansen | 2002-12-30 | 5 | -84/+44 |
| | | | | | | | | | | | knows about plat-mac subdirectories, and configure adds a variable EXTRAPLATDIR. These together take care of copying Lib/plat-mac to the destination on darwin. Adding plat-mac is still done with a .pth file which is only created when you do a framework build. I'm not 100% happy with this, but fixing it really needs a functional pythonw in non-framework builds, and I don't think I can do that before 2.3a1 (but I'll try:-). | ||||
* | Fix SF #658820, regex fixes for _strptime (Brett Cannon) | Neal Norwitz | 2002-12-30 | 1 | -8/+9 |
| | | | | Disallow zero for days and months | ||||
* | These were somehow never added to CVS. | Jack Jansen | 2002-12-30 | 2 | -0/+360 |
| | |||||
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 13 | -35/+1887 |
| | | | | | | | | | | | | | - new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again. | ||||
* | Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used both | Jack Jansen | 2002-12-30 | 136 | -0/+207 |
| | | | | | | | in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on Mac OS X). The only items remaining in Mac/Lib are modules that are meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences in resources, etc). | ||||
* | Add __all__. (Brett Cannon.) | Guido van Rossum | 2002-12-30 | 1 | -0/+2 |
| | |||||
* | Bite the bullet on all the indirect timetz and datetimetz tzinfo methods: | Tim Peters | 2002-12-30 | 1 | -14/+20 |
| | | | | | | make the callers figure out the right tzinfo arguments to pass, instead of making the callees guess. The code is uglier this way, but it's less brittle (when the callee guesses, the caller can get surprised). | ||||
* | We're using strictly American spellings, so there's no diaresis over | Fred Drake | 2002-12-30 | 1 | -53/+56 |
| | | | | | | the i in naive. More markup fixups. | ||||
* | SF patch 659809, by Daniel Brotsky: fix Makefile.pre to use config | Guido van Rossum | 2002-12-30 | 2 | -3/+6 |
| | | | | | | | | env. This adds @CFLAGS@ and @CPPFLAGS@ to the end of the respective variable definitions. It also adds $(LDFLAGS) to the $(CC) invocation to build $(PGEN). | ||||
* | A short note about the versions of BerkeleyDB we now support | Barry Warsaw | 2002-12-30 | 1 | -4/+5 |
| | |||||
* | Port BerkeleyDB 4.1 support from the pybsddb project. bsddb is now at | Barry Warsaw | 2002-12-30 | 22 | -403/+930 |
| | | | | version 4.1.1 and works with up to BerkeleyDB 4.1.25. | ||||
* | Add some missing tests. Should now test everything that pybsddb's | Barry Warsaw | 2002-12-30 | 1 | -24/+32 |
| | | | | test suite tests. | ||||
* | A step on the way to making tzinfo classes writable by mortals: get rid | Tim Peters | 2002-12-30 | 3 | -66/+117 |
| | | | | | | | of the timetz case. A tzinfo method will always see a datetimetz arg, or None, now. In the former case, it's still possible that it will get a datetimetz argument belonging to a different timezone. That will get fixed next. | ||||
* | Start something that might make table notes easier to deal with, | Fred Drake | 2002-12-30 | 1 | -0/+21 |
| | | | | eventually. | ||||
* | Search for and use BerkeleyDB 4.1 if it's available. Python's | Barry Warsaw | 2002-12-30 | 1 | -10/+9 |
| | | | | extension module now supports it. | ||||
* | Template for future tests. | Barry Warsaw | 2002-12-30 | 1 | -7/+4 |
| | |||||
* | Clean up a table so it passes formatting. | Fred Drake | 2002-12-30 | 1 | -12/+19 |
| | |||||
* | Add news about fix for bug #624807. | Neil Schemenauer | 2002-12-30 | 1 | -0/+4 |
| | |||||
* | Added the \var{} markup so the tables will look good. | Raymond Hettinger | 2002-12-30 | 1 | -8/+9 |
| | |||||
* | Match new sequence behavior. User defined types now behave better as and | Neil Schemenauer | 2002-12-30 | 1 | -2/+2 |
| | | | | with sequences. | ||||
* | This file hasn't been committed for a long time, because it erronuously ended | Jack Jansen | 2002-12-30 | 1 | -41/+153 |
| | | | | up in the Carbon package. | ||||
* | Consolidate the int and long sequence repeat code. Before the change, | Neil Schemenauer | 2002-12-30 | 2 | -65/+0 |
| | | | | integers checked for integer overflow but longs did not. | ||||
* | Long-obsolete, replaced by Carbon.Sound. | Jack Jansen | 2002-12-30 | 1 | -64/+0 |
| | |||||
* | Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, | Neil Schemenauer | 2002-12-30 | 1 | -50/+128 |
| | | | | | | | andsq_inplace_repeat. This fixes a number of corner case bugs (see #624807). Consolidate the int and long sequence repeat code. Before the change, integers checked for integer overflow but longs did not. | ||||
* | Added markup upto line 233. | Raymond Hettinger | 2002-12-30 | 1 | -58/+57 |
| | |||||
* | Update the email package news. | Barry Warsaw | 2002-12-30 | 1 | -1/+1 |
| | |||||
* | Describe the new `errors' argument to Header.__init__() and | Barry Warsaw | 2002-12-30 | 1 | -2/+9 |
| | | | | Header.append() | ||||
* | test_bad_8bit_header(): Tests for optional argument `errors'. See SF | Barry Warsaw | 2002-12-30 | 1 | -0/+11 |
| | | | | bug #648119. | ||||
* | Header.__init__(), .append(): Add an optional argument `errors' which | Barry Warsaw | 2002-12-30 | 1 | -6/+11 |
| | | | | | | is passed straight through to the unicode() and ustr.encode() calls. I think it's the best we can do to address the UnicodeErrors in badly encoded headers such as is described in SF bug #648119. | ||||
* | Actually, make this 2.5a1 since it will include API changes that may | Barry Warsaw | 2002-12-30 | 1 | -1/+1 |
| | | | | need more vetting, and it will be included in Python 2.3a1. | ||||
* | Silence cast warnings for Tcl 8.3. | Martin v. Löwis | 2002-12-30 | 1 | -6/+12 |
| | |||||
* | Bump to 2.5 | Barry Warsaw | 2002-12-30 | 1 | -1/+1 |
| | |||||
* | TestMIMEAudio.setUp(): Use the email package's copy of the audio test | Barry Warsaw | 2002-12-30 | 1 | -2/+7 |
| | | | | | | file, needed because some binary distros (read RPMs) don't include the test module in their standard Python package. This eliminates an external dependency and closes SF bug # 650441. | ||||
* | A copy of the audio test file from Lib/test, needed because some | Barry Warsaw | 2002-12-30 | 1 | -0/+0 |
| | | | | | | binary distros (read RPMs) don't include the test module in their standard Python package. This eliminates an external dependency and closes SF bug # 650441. | ||||
* | Added tests that conversion to our own timezone is always an identity, | Tim Peters | 2002-12-30 | 1 | -0/+13 |
| | | | | | and that conversion to "timezone" None is the same as stripping the tzinfo member. | ||||
* | parsedate_tz(): Fix SF bug #552345, optional FWS between the comma and | Barry Warsaw | 2002-12-30 | 1 | -1/+8 |
| | | | | the day in an RFC 2822 date. | ||||
* | test_parsedate_compact(): A test for optional FWS between the comma | Barry Warsaw | 2002-12-30 | 1 | -0/+5 |
| | | | | | and the day number in an RFC 2822 date specification. See bug #552345. | ||||
* | Beefed up the timezone conversion test by adding a phony UTC zone that's | Tim Peters | 2002-12-30 | 1 | -67/+81 |
| | | | | | west of the US zones getting converted, and also by using Eastern "as if" it were UTC (wrt Pacific), and vice versa. | ||||
* | A code cleansing pass | Barry Warsaw | 2002-12-30 | 1 | -55/+74 |
| | |||||
* | Patch 659834 by Magnus Lie Hetland: | Guido van Rossum | 2002-12-30 | 4 | -3/+71 |
| | | | | | | | | | Check for readline 2.2 features. This should make it possible to compile readline.c again with GNU readline versions 2.0 or 2.1; this ability was removed in readline.c rev. 2.49. Apparently the older versions are still in widespread deployment on older Solaris installations. With an older readline, completion behavior is subtly different (a space is always added). | ||||
* | Port rfc822.py changes that didn't make it into this copy, | Barry Warsaw | 2002-12-30 | 1 | -21/+35 |
| | | | | | specifically that dots are allowed in obs-phrase. This fixes parsing of dots in realnames. |