Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1488098. | Ronald Oussoren | 2006-05-23 | 3 | -2/+125 |
| | | | | | | This patchs makes it possible to create a universal build on OSX 10.4 and use the result to build extensions on 10.3. It also makes it possible to override the '-arch' and '-isysroot' compiler arguments for specific extensions. | ||||
* | Disable linking extensions with -lpython2.5 for darwin. This should fix bug | Ronald Oussoren | 2006-05-23 | 1 | -0/+5 |
| | | | | #1487105. | ||||
* | Apply revised patch for GzipFile.readline performance #1281707 | Bob Ippolito | 2006-05-22 | 1 | -16/+21 |
| | |||||
* | Revert gzip readline performance patch #1281707 until a more generic ↵ | Bob Ippolito | 2006-05-22 | 1 | -28/+20 |
| | | | | performance improvement can be found | ||||
* | GzipFile.readline performance improvement (~30-40%), patch #1281707 | Bob Ippolito | 2006-05-22 | 1 | -20/+28 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-19 | 1 | -1/+1 |
| | |||||
* | Fix #1474677, non-keyword argument following keyword. | Neal Norwitz | 2006-05-19 | 1 | -0/+3 |
| | |||||
* | Changed status from "beta" to "production"; since logging has been part of ↵ | Vinay Sajip | 2006-05-18 | 1 | -1/+1 |
| | | | | the stdlib since 2.3, it should be safe to make this assertion ;-) | ||||
* | Bug #1462152: file() now checks more thoroughly for invalid mode | Georg Brandl | 2006-05-18 | 1 | -1/+1 |
| | | | | | strings and removes a possible "U" before passing the mode to the C library function. | ||||
* | Little cleanup | Neal Norwitz | 2006-05-18 | 2 | -4/+4 |
| | |||||
* | Fix test_locale for platforms without a default thousands separator. | Georg Brandl | 2006-05-18 | 1 | -5/+8 |
| | |||||
* | Remove unused import. | Georg Brandl | 2006-05-18 | 2 | -2/+2 |
| | |||||
* | Amendments to patch #1484695. | Georg Brandl | 2006-05-18 | 1 | -45/+52 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-18 | 2 | -12/+12 |
| | |||||
* | Patch #1180296: improve locale string formatting functions | Georg Brandl | 2006-05-17 | 2 | -46/+149 |
| | |||||
* | Delay-import some large modules to speed up urllib2 import. | Georg Brandl | 2006-05-17 | 1 | -8/+28 |
| | | | | (fixes #1484793). | ||||
* | Patch #1486962: Several bugs in the turtle Tk demo module were fixed | Georg Brandl | 2006-05-17 | 1 | -18/+565 |
| | | | | and several features added, such as speed and geometry control. | ||||
* | Add global debug flag to cookielib to avoid heavy dependency on the logging ↵ | Georg Brandl | 2006-05-17 | 1 | -63/+74 |
| | | | | | | module. Resolves #1484758. | ||||
* | Text files missing the SVN eol-style property. | Tim Peters | 2006-05-16 | 1 | -964/+964 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-16 | 1 | -1/+1 |
| | |||||
* | Patch #1435422: zlib's compress and decompress objects now have a | Georg Brandl | 2006-05-16 | 1 | -0/+57 |
| | | | | copy() method. | ||||
* | test_directory(): Remove the leftover temp directory that's making | Tim Peters | 2006-05-15 | 1 | -0/+4 |
| | | | | the Windows buildbots fail test_tarfile. | ||||
* | ReadDetectFileobjTest: repair Windows disasters by opening | Tim Peters | 2006-05-15 | 1 | -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 Brandl | 2006-05-15 | 2 | -2/+90 |
| | |||||
* | - Bug #1487966: Fix SystemError with conditional expression in assignment | Neal Norwitz | 2006-05-15 | 1 | -16/+19 |
| | | | | Most of the test_syntax changes are just updating the numbers. | ||||
* | Rework the build system for osx applications: | Ronald Oussoren | 2006-05-14 | 1 | -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 Id | Thomas Heller | 2006-05-12 | 1 | -104/+104 |
| | |||||
* | Add missing svn properties. | Thomas Heller | 2006-05-12 | 1 | -122/+122 |
| | |||||
* | Typo fix. | Georg Brandl | 2006-05-11 | 1 | -1/+1 |
| | |||||
* | BaseThreadedTestCase.setup(): stop special-casing WindowsError. | Tim Peters | 2006-05-11 | 1 | -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öwis | 2006-05-11 | 2 | -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 and | Georg Brandl | 2006-05-10 | 3 | -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 fixes | Georg Brandl | 2006-05-10 | 3 | -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 Peters | 2006-05-10 | 2 | -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 Heller | 2006-05-09 | 1 | -11/+16 |
| | |||||
* | Patch #1478993: take advantage of BaseException/Exception split in cookielib | Georg Brandl | 2006-05-08 | 3 | -29/+35 |
| | |||||
* | Patch #1479302: Make urllib2 digest auth and basic auth play together. | Georg Brandl | 2006-05-08 | 2 | -3/+21 |
| | |||||
* | Add test for rev. 45934. | Georg Brandl | 2006-05-08 | 1 | -0/+16 |
| | |||||
* | Patch #1483395: add new TLDs to cookielib | Georg Brandl | 2006-05-07 | 1 | -4/+7 |
| | |||||
* | Handle ERROR_ALREADY_EXISTS. | Martin v. Löwis | 2006-05-06 | 1 | -0/+8 |
| | |||||
* | Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API. | Martin v. Löwis | 2006-05-06 | 2 | -0/+16 |
| | |||||
* | oops - the function is exported as 'my_free', not 'free'. | Thomas Heller | 2006-05-05 | 1 | -4/+4 |
| | |||||
* | Fix memory leaks in the ctypes test suite, reported by valgrind, by | Thomas Heller | 2006-05-05 | 1 | -0/+8 |
| | | | | free()ing the memory we allocate. | ||||
* | Update checks to consider Windows error numbers. | Martin v. Löwis | 2006-05-04 | 1 | -3/+29 |
| | |||||
* | Implement os.{chdir,rename,rmdir,remove} using Win32 directly. | Martin v. Löwis | 2006-05-04 | 2 | -3/+19 |
| | |||||
* | Patch #1475845: Raise IndentationError for unexpected indent. | Martin v. Löwis | 2006-05-04 | 1 | -2/+18 |
| | |||||
* | Bug #1481530: allow "from os.path import ..." with imputil | Georg Brandl | 2006-05-04 | 1 | -2/+5 |
| | |||||
* | Don't fail the tests when libglut.so or libgle.so cannot be loaded. | Thomas Heller | 2006-05-03 | 1 | -2/+16 |
| | |||||
* | Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package. | Georg Brandl | 2006-05-03 | 2 | -7/+8 |
| | |||||
* | Bug #1472191: convert breakpoint indices to ints before comparing them to ints | Georg Brandl | 2006-05-03 | 1 | -1/+7 |
| |