summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Text files missing the SVN eol-style property.Tim Peters2006-05-161-964/+964
|
* Whitespace normalization.Tim Peters2006-05-161-1/+1
|
* Patch #1435422: zlib's compress and decompress objects now have aGeorg Brandl2006-05-161-0/+57
| | | | copy() method.
* test_directory(): Remove the leftover temp directory that's makingTim Peters2006-05-151-0/+4
| | | | the Windows buildbots fail test_tarfile.
* ReadDetectFileobjTest: repair Windows disasters by openingTim Peters2006-05-151-1/+2
| | | | | | | | | | the file object in binary mode. The Windows buildbot slaves shouldn't swap themselves to death anymore. However, test_tarfile may still fail because of a temp directory left behind from a previous failing run. Windows buildbot owners may need to remove that directory by hand.
* [ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634)Georg Brandl2006-05-152-2/+90
|
* - Bug #1487966: Fix SystemError with conditional expression in assignmentNeal Norwitz2006-05-151-16/+19
| | | | Most of the test_syntax changes are just updating the numbers.
* Rework the build system for osx applications:Ronald Oussoren2006-05-141-5/+18
| | | | | | | | | | | * Don't use xcodebuild for building PythonLauncher, but use a normal unix makefile. This makes it a lot easier to use the same build flags as for the rest of python (e.g. make a universal version of python launcher) * Convert the mac makefile-s to makefile.in-s and use configure to set makefile variables instead of forwarding them as command-line arguments * Add a C version of pythonw, that we you can use '#!/usr/local/bin/pythonw' * Build IDLE.app using bundlebuilder instead of BuildApplet, that will allow easier modification of the bundle contents later on.
* add svn:eol-style native svn:keywords IdThomas Heller2006-05-121-104/+104
|
* Add missing svn properties.Thomas Heller2006-05-121-122/+122
|
* Typo fix.Georg Brandl2006-05-111-1/+1
|
* BaseThreadedTestCase.setup(): stop special-casing WindowsError.Tim Peters2006-05-111-2/+0
| | | | | Rev 45964 fiddled with WindowsError, and broke test_bsddb3 on all the Windows buildbot slaves as a result. This should repair it.
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-112-32/+0
| | | | | and the DOS error code in errno. Revert changes where WindowsError catch blocks unnecessarily special-case OSError.
* Patch #721464: pdb.Pdb instances can now be given explicit stdin andGeorg Brandl2006-05-103-103/+108
| | | | | stdout arguments, making it possible to redirect input and output for remote debugging.
* Patch #1484695: Update the tarfile module to version 0.8. This fixesGeorg Brandl2006-05-103-182/+247
| | | | | a couple of issues, notably handling of long file names using the GNU LONGNAME extension.
* Variant of patch #1478292. doctest.register_optionflag(name)Tim Peters2006-05-102-3/+22
| | | | | shouldn't create a new flag when `name` is already the name of an option flag.
* Disable a test that is unreliable.Thomas Heller2006-05-091-11/+16
|
* Patch #1478993: take advantage of BaseException/Exception split in cookielibGeorg Brandl2006-05-083-29/+35
|
* Patch #1479302: Make urllib2 digest auth and basic auth play together.Georg Brandl2006-05-082-3/+21
|
* Add test for rev. 45934.Georg Brandl2006-05-081-0/+16
|
* Patch #1483395: add new TLDs to cookielibGeorg Brandl2006-05-071-4/+7
|
* Handle ERROR_ALREADY_EXISTS.Martin v. Löwis2006-05-061-0/+8
|
* Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.Martin v. Löwis2006-05-062-0/+16
|
* oops - the function is exported as 'my_free', not 'free'.Thomas Heller2006-05-051-4/+4
|
* Fix memory leaks in the ctypes test suite, reported by valgrind, byThomas Heller2006-05-051-0/+8
| | | | free()ing the memory we allocate.
* Update checks to consider Windows error numbers.Martin v. Löwis2006-05-041-3/+29
|
* Implement os.{chdir,rename,rmdir,remove} using Win32 directly.Martin v. Löwis2006-05-042-3/+19
|
* Patch #1475845: Raise IndentationError for unexpected indent.Martin v. Löwis2006-05-041-2/+18
|
* Bug #1481530: allow "from os.path import ..." with imputilGeorg Brandl2006-05-041-2/+5
|
* Don't fail the tests when libglut.so or libgle.so cannot be loaded.Thomas Heller2006-05-031-2/+16
|
* Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package.Georg Brandl2006-05-032-7/+8
|
* Bug #1472191: convert breakpoint indices to ints before comparing them to intsGeorg Brandl2006-05-031-1/+7
|
* RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" ↵Georg Brandl2006-05-031-4/+13
| | | | if not necessary.
* Add seamonkey to list of Windows browsers too.Georg Brandl2006-05-031-1/+2
|
* Finish bringing SVN into line with latest version of PEP 343 by getting rid ↵Nick Coghlan2006-05-034-43/+44
| | | | of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager()
* Move network tests from test_urllib2 to test_urllib2net.Georg Brandl2006-05-032-135/+137
|
* Patch #1480067: don't redirect HTTP digest auth in urllib2Georg Brandl2006-05-031-1/+1
|
* Whitespace normalization.Tim Peters2006-05-031-1/+1
|
* Use open() instead of file()Andrew M. Kuchling2006-05-022-23/+23
|
* Hopefully this will fix the spurious failures of test_mailbox.py that I'mGuido van Rossum2006-05-021-4/+8
| | | | | experiencing. (This code and mailbox.py itself are full of calls to file() that should be calls to open() -- but I'm not fixing those.)
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-028-105/+19
| | | | | | | | discussion. There are two places of documentation that still mention __context__: Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without spending a whole lot of time thinking about it; and whatsnew, which Andrew usually likes to change himself.
* Fix the formatting of KeyboardInterrupt -- a bad issubclass() call.Guido van Rossum2006-05-022-1/+7
|
* Replaced my dumb way of calculating seconds to midnight with Tim Peters' ↵Vinay Sajip2006-05-021-6/+4
| | | | much more sensible suggestion. What was I thinking ?!?
* SF #1479988: add methods to allow access to weakrefs for theFred Drake2006-05-022-0/+92
| | | | weakref.WeakKeyDictionary and weakref.WeakValueDictionary
* Try to fix breakage caused by patch #1479181, r45850Neal Norwitz2006-05-022-4/+4
|
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-2/+2
|
* Rename parameters to match the documentation (whichMartin v. Löwis2006-05-012-16/+15
| | | | | in turn matches Microsoft's documentation). Drop unused parameter in CAB.append.
* Rename uisample to text, drop all non-text tables.Martin v. Löwis2006-05-012-1399/+129
|
* Port forward from 2.4 branch:Barry Warsaw2006-05-015-0/+24
| | | | | | | | | | Patch #1464708 from William McVey: fixed handling of nested comments in mail addresses. E.g. "Foo ((Foo Bar)) <foo@example.com>" Fixes for both rfc822.py and email package. This patch needs to be back ported to Python 2.3 for email 2.5.
* Patch #1472854: make the rlcompleter.Completer class usable on non-Georg Brandl2006-04-302-7/+7
| | | | UNIX platforms.