summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* If an extension can't be loaded, print warning and skip it instead ofKurt B. Kaiser2005-01-192-1/+8
| | | | erroring out.
* Improve error handling when .idlerc can't be created (warn and exit)Kurt B. Kaiser2005-01-192-15/+19
|
* fix typeset of vertical bar for PDF formatFred Drake2005-01-191-2/+2
| | | | (closes SF bug #1008998)
* install distutils.tests on Unix (contributed patch)Fred Drake2005-01-191-1/+2
| | | | (closes SF bug #1093173)
* documentation for the zipimport module using contributed patchFred Drake2005-01-192-0/+2
| | | | (closes SF bug #853800; markup adjusted)
* This commit was manufactured by cvs2svn to create branchcvs2svn2005-01-191-0/+133
| | | | 'release24-maint'.
* Description of args to IMAP4.store() in imaplibFred Drake2005-01-191-1/+20
| | | | (closes SF patch #1084092; modified per comments in SF)
* Clean up discussion of new C thread idiomFred Drake2005-01-191-13/+11
| | | | (closes SF patch #1031233; modified)
* fix a bunch of spelling errorsFred Drake2005-01-197-7/+7
| | | | (closes SF patch #1104868)
* remove spurious line from widget variables exampleFred Drake2005-01-191-1/+0
| | | | (closes SF patch #1094815)
* backport: make thread stack size compile-time tunable on OS/2, incr main stackAndrew MacIntyre2005-01-171-1/+17
|
* make thread stack size compile-time tunable on OS/2Andrew MacIntyre2005-01-171-1/+5
|
* fix typoFred Drake2005-01-121-1/+1
|
* Add duck-typing to the glossary.Raymond Hettinger2005-01-111-0/+11
|
* SF bug #1099516: tempfile files not types.FileTypeRaymond Hettinger2005-01-111-5/+5
| | | | Clarified that the returned object is file-like rather than an actual file.
* Backport checkin:Walter Dörwald2005-01-102-2/+32
| | | | Fix and test for SF bug #1098990: codec readline() splits lines apart.
* Backport for bug #839496: always read files in binary mode. Opening files inJohannes Gijsbers2005-01-101-5/+4
| | | | | text mode may cause newline translations, making the actual size of the content transmitted *less* than the content-length.
* Backport patch #712317: In URLs such as http://www.example.com?query=spam,Johannes Gijsbers2005-01-092-41/+63
| | | | | | treat '?' as a delimiter. Previously, the 'network location' (<authority> in RFC 2396) would become 'www.example.com?query=spam', while RFC 2396 does not allow a '?' in <authority>. See bug #548176 for further discussion.
* Backport patch #1095362: replace hardcoded test for POST/GET with call toJohannes Gijsbers2005-01-091-1/+1
| | | | | get_method, removing some duplication and gaining some flexibility in the process.
* Backport patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown:Johannes Gijsbers2005-01-091-9/+44
| | | | | | | | | | | | | * Document hasFeature(), createDocument(), CreateDocumentType(), hasAttribute(), hasAttributeNS(). * In the documentation for createDocument(), it is now stated that the Python DOM API allows implementations to forego creation of the document element child node, if no namespace and local name arguments are given. (This possibility is left open and unaddressed in the W3C spec). * Addition by me: use 'name' rather than 'attname', for consistency with the DOM specification and the Python DOM API implementation.
* Starting on the 2.4 MacPython installer.Jack Jansen2005-01-073-16/+38
|
* Started on Macintosh section.Jack Jansen2005-01-071-1/+19
|
* Backport of 1.38:Jack Jansen2005-01-071-4/+7
| | | | Allow relative URLs for included databases and packages.
* Backport of Patch #1097739 by Bob Ippolito:Jack Jansen2005-01-072-15/+15
| | | | | | | MacOSX: if we cannot use -undefined dynamic_lookup (such as on 10.2 or earlier) we link extension directly against the dynamic library in the framework in stead of against the framework. This will fix building extensions for 2.3 after 2.4 has been installed too.
* Backport of 1.479:Jack Jansen2005-01-072-3/+3
| | | | | Always set CONFIGURE_MACOSX_DEPLOYMENT_TARGET otherwise it may be set to an empty value and distutils will get confused lateron.
* Backport of 1.20:Jack Jansen2005-01-071-0/+2
| | | | Workaround for the fact that urllib2 doesn't default to "file:" urls.
* SF patch 1094011: Docs for file() vs open().Raymond Hettinger2005-01-071-3/+6
|
* SF bug #1091740: garbage collector still documented as optionalRaymond Hettinger2005-01-071-5/+0
|
* Backported from the trunk:Jack Jansen2005-01-063-7/+11
| | | | | | | | | After discussion on the PythonMac-SIG it was decided that it is better to make using "-undefined dynamic_lookup" for linking extensions more automatic on 10.3 and later. So if we're on that platform and MACOSX_DEPLOYMENT_TARGET is not set we now set it to the current OSX version during configure. Additionally, distutils will pick up the configure-time value by default.
* Backported from the trunk:Jack Jansen2005-01-061-9/+16
| | | | | | - When doing a frameworkinstall test whether Apple's Python 2.3 may need fixing - Added quotes around destroot arguments.
* This commit was manufactured by cvs2svn to create branchcvs2svn2005-01-061-0/+119
| | | | 'release24-maint'.
* Updating the Idle wrapper to match the current CVS copy.Sean Reifschneider2005-01-051-3/+9
|
* Clarify that DictMixin is still useful. Only the UserDict class was supplanted.Raymond Hettinger2005-01-041-13/+11
|
* Fix typo.Martin v. Löwis2005-01-031-2/+2
|
* Backport of 1.37:Jack Jansen2005-01-031-7/+43
| | | | | | | | | | - Added an "installer" flavor, which uses the "open" command to install something (overridable through Install-command entry) - Hidden status is now determined by flavor == hidden, not by missing Download-URL. Hidden packages behave like installer packages. - Made some error messages a bit more understandable. Because there's new functionality the version has been upped to 0.5.
* On UNIX, when the execution of the child fails, we must waitpid() toPeter Astrand2005-01-011-0/+1
| | | | prevent leaving zombies.
* SF patch #1094007: Remove witty comment in pydoc.pyRaymond Hettinger2005-01-011-2/+1
| | | | (Removed at Ping's request.)
* SF patch #1051395: locale.getdefaultlocale does not return tuple in some OSRaymond Hettinger2005-01-011-1/+1
| | | | (Contributed by Jiwon Seo.)
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-0160-102/+103
|
* Backport:Jack Jansen2004-12-314-11/+28
| | | | | | Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destroot option to various tools, and do the right thing when we're doing a destroot install.
* Patch #1011890: fix inspect.getsource breaking with line-continuation &Johannes Gijsbers2004-12-311-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | more. Thanks to Simon Percivall! The patch makes changes to inspect.py in two places: * the pattern to match against functions at line 436 is modified: lambdas should be matched even if not preceded by whitespace, as long as "lambda" isn't part of another word. * the BlockFinder class is heavily modified. Changes are: - checking for "def", "class" or "lambda" names before setting self.started to True. Then checking the same line for word characters after the colon (if the colon is on that line). If so, and the line does not end with a line continuation marker, raise EndOfBlock immediately. - adding self.passline to show that the line is to be included and no more checking is necessary on that line. Since a NEWLINE token is not generated when a line continuation marker exists, this allows getsource to continue with these functions even if the following line would not be indented. Don't backport the tests, as these have been too heavily modified on the trunk.
* SF bug #1090139: presentation typo in lib: 6.21.4.2 How callbacks are calledRaymond Hettinger2004-12-311-1/+1
|
* Add more test directories to testsuite.Martin v. Löwis2004-12-301-1/+5
|
* Update to VC 7.1.Martin v. Löwis2004-12-301-54/+54
|
* Backport checkin:Walter Dörwald2004-12-291-1/+1
| | | | Fix wrong variable name.
* Update example to VC 7.1.Martin v. Löwis2004-12-293-190/+40
|
* This commit was manufactured by cvs2svn to create branchcvs2svn2004-12-292-0/+213
| | | | 'release24-maint'.
* Backport checkin:Walter Dörwald2004-12-291-1/+1
| | | | Fix wrong variable name.
* Backport of 1.36:Jack Jansen2004-12-281-2/+2
| | | | | | | - getDefaultDatabase wasn't listed in __all__. - using a different database for non-final releases should only be done for X.Y.0. Non-final micro releases can use the default database just fine, as they are required to be backward compatible.
* [Bug #1083110] calling .flush() on decompress objects causes a segfault due ↵Andrew M. Kuchling2004-12-283-1/+18
| | | | to an uninitialized pointer: fixes the problem and adds a test case