summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Bump to version 2.5.1Barry Warsaw2003-03-301-1/+1
|
* test_whitespace_eater_unicode_2(): Test case for SF bug #710498.Barry Warsaw2003-03-301-0/+9
|
* __unicode__(): Fix the logic for calculating whether to add aBarry Warsaw2003-03-301-3/+3
| | | | | separating space or not between encoded chunks. Closes SF bug #710498.
* SF patch #706338, Fix a few broken links in pydoc by Greg ChapmanNeal Norwitz2003-03-301-4/+4
|
* Patch #712124: Remove obsolete comment.Martin v. Löwis2003-03-301-1/+0
|
* Support '' as the argument for the setlocale emulation. Fixes #678259.Martin v. Löwis2003-03-301-1/+1
|
* Patch #545300: Support marked sections.Martin v. Löwis2003-03-303-16/+104
|
* The socket module now always uses the _socketobject wrapper class, even onSkip Montanaro2003-03-302-5/+33
| | | | | | | | | platforms which have dup(2). The makefile() method is built directly on top of the socket without duplicating the file descriptor, allowing timeouts to work properly. Includes a new test case (urllibnet) which requires the network resource. Closes bug 707074.
* Moved gensuitemodule from Mac/scripts to Lib/plat-mac. DocumentationJack Jansen2003-03-291-0/+1132
| | | | remains to be done.
* Move Mac/Windows specific expected skips from each platform listNeal Norwitz2003-03-291-49/+8
| | | | | to the ExpectedSkips class. Add test_scriptpackages to Mac only list. Add test_unicode_file to Windows only list.
* Patch #707701: Expect '??' in event fields. Fixes #698517.Martin v. Löwis2003-03-291-16/+32
| | | | Will backport to 2.2.
* Regenerated with the new way to get terminology (through AppleEvents),Jack Jansen2003-03-2927-2692/+1571
| | | | | which sometimes seems to result in different terminology. It does seem to be mostly compatible, though.
* On OSX the finder will return from an open() event before the applicationJack Jansen2003-03-281-0/+12
| | | | | has actually entered its event loop. As a stopgap, allow for a 10 second grace period.
* Sigh: didn't catch all lists that needed to be sorted. Regenerated again.Jack Jansen2003-03-2829-2508/+2508
|
* make nt altsep forward slash - closes bug 709428Skip Montanaro2003-03-281-1/+1
| | | | backport candidate
* Regenerated (from resource files) with sorting version of gensuitemodule.Jack Jansen2003-03-2829-3052/+3048
| | | | | | This is a first step towards regenerating the modules with newer, MacOSX, versions of these programs, and using the programmatic interface to get at the terminology in stead of poking in resource files.
* Minimal test suite of the generated packages in plat-mac/lib-scriptpackages.Jack Jansen2003-03-281-0/+49
| | | | | At the moment does little more than testing that the modules import correctly and some classes can be instantiated.
* Hide private names beginning with _ (but don't hide __special__ names).Ka-Ping Yee2003-03-281-54/+77
| | | | | | Clean up section headings; make the bars on the left less fat. Adjust the display of properties slightly. Don't show stuff inherited from the base 'object' type.
* Make module lookup a little more robust (certain kinds of fiddling toKa-Ping Yee2003-03-281-2/+2
| | | | sys.modules previously produced an exception).
* Move testing code into "if __name__ == '__main__'" so it's not run on import.Ka-Ping Yee2003-03-281-21/+21
|
* Adds support for the DBEnv->set_timeout() method.Gregory P. Smith2003-03-271-1/+7
|
* Replace criterium with criterion. Fixes #705120.Martin v. Löwis2003-03-271-1/+1
|
* Temporary bump of the version number.Barry Warsaw2003-03-261-1/+1
|
* typed_subpart_iterator(): Fix these to use non-deprecated APIs,Barry Warsaw2003-03-261-3/+10
| | | | | | i.e. get_content_maintype() and get_content_subtype(). Also, add True, False for Python 2.2.x where x < 2 compatibility.
* typed_subpart_iterator(): Fix these to use non-deprecated APIs,Barry Warsaw2003-03-261-2/+2
| | | | i.e. get_content_maintype() and get_content_subtype().
* Add two tests for simple error cases.Walter Dörwald2003-03-261-0/+4
|
* CommandTests.testgetoutput():Thomas Wouters2003-03-251-1/+3
| | | | | Make sure we aren't masking any errors raised in tempfile.mkdtemp() by referencing the (then) unbound local 'dir'.
* Allow floating point values in ProgressBar.Jack Jansen2003-03-241-0/+2
|
* Regenerated with Donovan Prestons patch #702620.Jack Jansen2003-03-2345-117/+331
|
* Correct error in last checkin noticed by Neal Norwitz. And some more.Kurt B. Kaiser2003-03-221-4/+4
|
* M PyShell.pyKurt B. Kaiser2003-03-222-19/+95
| | | | | | | | | | | | | | | | M run.py 1. Move subprocess socket handling to a subthread - "SockThread". 2. In the subprocess, implement a queue and global completion and exit flags. Execute code after it is passed through the queue. (Currently, user code is executed in SockThread. The next phase of development will move the tail of the queue to MainThread.) 3. Implement an RPC message used to shut down the execution server. 4. Improve normal and exception subprocess exits. (At this checkin a "pass loop" interrupt doesn't work on any platform. It will be restored for all platforms once user code execution is moved to MainThread.)
* Improve error message handling.Kurt B. Kaiser2003-03-221-3/+21
|
* use os.path.realpath() instead of os.readlink()Just van Rossum2003-03-211-3/+1
|
* Email version 2.5 -- I will now backport this to Python 2.2.3.Barry Warsaw2003-03-211-1/+1
|
* Rename variables _seq to _it and seq to it, to emphasize that this isGuido van Rossum2003-03-211-5/+5
| | | | an iterator (which can only be used once!).
* Getting rid of macfs.Jack Jansen2003-03-211-6/+6
|
* Adding unicode filename support to FSRefs broke things on MacOS9. "Fixed" by ↵Jack Jansen2003-03-211-3/+5
| | | | disabling unicode filenames on OS9.
* Patch 702620 by Donovan Preston: Fix AE inheritance.Jack Jansen2003-03-211-3/+3
|
* only set $PYTHONHOME when building a standalone app.Just van Rossum2003-03-211-1/+3
|
* Patch #681927 from Robin Dunn: add option to add shared libraries orJust van Rossum2003-03-211-1/+15
| | | | frameworks to the bundle.
* Prevent the pty test from hanging by setting an alarm.Neal Norwitz2003-03-211-30/+46
| | | | Currently, test_pty hangs on AIX & HPUX if run after test_openpty.
* The message "*** skipping leakage tests ***" was causing the test toGuido van Rossum2003-03-211-1/+2
| | | | fail in a non-debug build. Only print this in verbose test mode.
* forgot Cliff's snifferSkip Montanaro2003-03-201-0/+289
|
* new CSV file processing module - see PEP 305Skip Montanaro2003-03-203-0/+758
|
* set $PYTHONHOME in the bootstrap script, for no good reason really,Just van Rossum2003-03-201-0/+1
| | | | except to avoid getpath.c giving unsollicited advice on stderr.
* SF bug 705836: struct.pack of floats in non-native endian orderTim Peters2003-03-201-0/+46
| | | | | | | | | | | | | | pack_float, pack_double, save_float: All the routines for creating IEEE-format packed representations of floats and doubles simply ignored that rounding can (in rare cases) propagate out of a long string of 1 bits. At worst, the end-off carry can (by mistake) interfere with the exponent value, and then unpacking yields a result wrong by a factor of 2. In less severe cases, it can end up losing more low-order bits than intended, or fail to catch overflow *caused* by rounding. Bugfix candidate, but I already backported this to 2.2. In 2.3, this code remains in severe need of refactoring.
* Skip the ioctl test if we can't open /dev/tty. This happens onNeal Norwitz2003-03-201-0/+6
| | | | | Solaris (and probably other Unixes) when run without a terminal (eg, from cron or at).
* Fix SF bug #697556, test_posix fails: getloginNeal Norwitz2003-03-181-6/+0
| | | | getlogin() can fail for too many reasons, so remove the test
* _encode_chunks(): Throw out empty chunks.Barry Warsaw2003-03-171-0/+2
|
* test_long_lines_with_different_header(): Another test from Jason.Barry Warsaw2003-03-171-0/+16
|