summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1490224: set time.altzone correctly on Cygwin.Georg Brandl2006-05-172-1/+3
|
* Fix typo in os.utime docstring (patch #1490189)Georg Brandl2006-05-171-1/+1
|
* Apply patch #1489784 from Michael Foord.Georg Brandl2006-05-171-39/+62
|
* Remove misleading comment about type-class unification.Georg Brandl2006-05-171-6/+5
|
* PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path.Tim Peters2006-05-171-5/+9
|
* Text files missing the SVN eol-style property.Tim Peters2006-05-1627-1427/+1427
|
* Whitespace normalization.Tim Peters2006-05-162-3/+3
|
* Document ImportWarningGeorge Yoshida2006-05-161-0/+5
|
* Mention that Exception is now a subclass of BaseException.George Yoshida2006-05-161-1/+1
| | | | | Remove a sentence that says that BaseException inherits from BaseException. (I guess this is just a copy & paste mistake.)
* Update for 'ImportWarning'George Yoshida2006-05-161-3/+3
|
* PEP 243 has been withdrawn, so don't refer to it any more.Andrew M. Kuchling2006-05-161-26/+14
| | | | The PyPI upload material has been moved into the section on PEP314.
* Add itemAndrew M. Kuchling2006-05-161-0/+6
|
* Patch #1435422: zlib's compress and decompress objects now have aGeorg Brandl2006-05-164-0/+175
| | | | copy() method.
* - Test for sys/statvfs.h before including it, as statvfs is presentMartin v. Löwis2006-05-164-10/+14
| | | | | on some OSX installation, but its header file is not. Will backport to 2.4
* 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-153-2/+93
|
* Remove bogus DECREF of self.Martin v. Löwis2006-05-151-65/+32
| | | | | Change __str__() functions to METH_O. Change WindowsError__str__ to use PyTuple_Pack.
* Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backportNeal Norwitz2006-05-153-1/+4
|
* - Bug #1487966: Fix SystemError with conditional expression in assignmentNeal Norwitz2006-05-154-16/+25
| | | | Most of the test_syntax changes are just updating the numbers.
* Move items implemented after a2 into the new a3 sectionNeal Norwitz2006-05-151-35/+61
|
* Fix memory leak.Martin v. Löwis2006-05-151-0/+1
|
* I missed one small detail in my rewrite of the osx build files: the pathRonald Oussoren2006-05-141-2/+2
| | | | to the Python.app template.
* A first cut at replacing the icons on MacOS X. This replaces all icons by iconsRonald Oussoren2006-05-1410-0/+3
| | | | | | | based on the new python.org logo. These are also the first icons that are "proper" OSX icons. These icons were created by Jacob Rus.
* Rework the build system for osx applications:Ronald Oussoren2006-05-1421-974/+547
| | | | | | | | | | | * 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.
* Remove lie in new comment.Tim Peters2006-05-131-3/+1
|
* Typo repair.Tim Peters2006-05-132-2/+2
|
* Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatVTim Peters2006-05-135-40/+127
| | | | | | | | | | | | about "%u", "%lu" and "%zu" formats. Since PyString_FromFormat and PyErr_Format have exactly the same rules (both inherited from PyString_FromFormatV), it would be good if someone with more LaTeX Fu changed one of them to just point to the other. Their docs were way out of synch before this patch, and I just did a mass copy+paste to repair that. Not a backport candidate (this is a new feature).
* Revert 43315: Printing of %zd must be signed.Martin v. Löwis2006-05-131-2/+2
|
* Add \exception markupGeorge Yoshida2006-05-132-3/+3
|
* Integrated the rest of the pysqlite reference manual into the PythonGerhard Häring2006-05-121-44/+316
| | | | documentation. Ready to be reviewed and improved upon.
* add svn:eol-style native svn:keywords IdThomas Heller2006-05-121-104/+104
|
* set svn propertiesThomas Heller2006-05-120-0/+0
|
* Add missing svn properties.Thomas Heller2006-05-121-122/+122
|
* Duplicated description about the illegal continue usage can be found in ↵George Yoshida2006-05-121-5/+2
| | | | | | nearly the same place. They are same, so keep the original one and remove the later-added one.
* Fix alignment error on Itanium.Martin v. Löwis2006-05-121-3/+6
|
* At first there were 6 steps, but one was removed after that.George Yoshida2006-05-121-1/+1
|
* Move icon files into DLLs dir. Fixes #1477968.Martin v. Löwis2006-05-121-5/+5
|
* Dynamically allocate path name buffer for UnicodeMartin v. Löwis2006-05-122-17/+31
| | | | | | path name in listdir. Fixes #1431582. Stop overallocating MAX_PATH characters for ANSI path names. Stop assigning to errno.
* SF patch #1473132: Improve docs for tp_clear and tp_traverse,Tim Peters2006-05-123-4/+87
| | | | | | by Collin Winter. Bugfix candidate (but I'm not going to bother).
* 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.
* typo fixAndrew M. Kuchling2006-05-111-2/+2
|
* Grammar fixGeorge Yoshida2006-05-111-2/+2
|
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-118-37/+234
| | | | | and the DOS error code in errno. Revert changes where WindowsError catch blocks unnecessarily special-case OSError.
* Don't mask a no memory error with a less meaningful one as discussed on ↵Neal Norwitz2006-05-111-3/+1
| | | | python-checkins
* Detect if %zd is supported by printf() during configure and setsBrett Cannon2006-05-113-0/+86
| | | | | | PY_FORMAT_SIZE_T appropriately. Removes warnings on OS X under gcc 4.0.1 when PY_FORMAT_SIZE_T is set to "" instead of "z" as is needed.
* Fix two small errors in argument lists.Georg Brandl2006-05-101-3/+3
|
* Clarify description of exception handlingAndrew M. Kuchling2006-05-101-8/+12
|
* Patch #721464: pdb.Pdb instances can now be given explicit stdin andGeorg Brandl2006-05-104-103/+112
| | | | | stdout arguments, making it possible to redirect input and output for remote debugging.