summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* Update VC references.Martin v. Löwis2004-12-241-2/+2
|
* use = instead of == as operator for testMatthias Klose2004-12-242-2/+2
|
* Fix mention of TextEdit to state it can save in plaintext.Brett Cannon2004-12-241-2/+2
|
* discuss how the __builtin__ module is normally used, and try to clarify theFred Drake2004-12-231-5/+38
| | | | | difference between __builtins__ and __builtin__ (based on an email comment) (backported from trunk revision 1.9)
* The GUI was hanging if the shell window was closed while a raw_input()Kurt B. Kaiser2004-12-233-7/+22
| | | | | | | | | was pending. Restored the quit() of the readline() mainloop(). http://mail.python.org/pipermail/idle-dev/2004-December/002307.html M NEWS.txt M PyShell.py M idlever.py
* Recompiled after source changes.Thomas Heller2004-12-222-0/+0
|
* Document bdist_wininst changes.Thomas Heller2004-12-221-0/+2
|
* Close stdout and stderr, which are redirected into a temp file, beforeThomas Heller2004-12-221-0/+6
| | | | | | trying to remove this file - the file was never removed before. Fixes [ 1067732 ] wininst --install-script leaves residual files
* Fix a typo from the last checkin.Thomas Heller2004-12-221-1/+1
|
* Backport of rev. 1.12 from the trunk.Thomas Heller2004-12-221-2/+5
|
* Patch #1088716: build and incorporate libpython24.a.Martin v. Löwis2004-12-221-1/+51
|
* Document resolved MSI issues.Martin v. Löwis2004-12-221-0/+11
|
* Properly quote IDLE shortcut. Fixes #1076861.Martin v. Löwis2004-12-221-2/+2
|
* Backport checkin:Walter Dörwald2004-12-221-0/+4
| | | | Add NEWS entry about bug #1076985.
* Backport msisupport.dll to 2.4Martin v. Löwis2004-12-221-38/+6
|
* Remove outdated comments about Macintosh for expanduser and expandvars.Brett Cannon2004-12-221-3/+1
|
* Backport checkin:Walter Dörwald2004-12-212-43/+121
| | | | | | | | | | | | | | | The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() trying to return a complete line even if a size parameter was given (see http://www.python.org/sf/1076985). This leads to buffer overflows with long source lines under Windows if e.g. cp1252 is used as the source encoding. This patch reverts the behaviour of readline() to something that behaves more like Python 2.3: If a size parameter is given, read() is called only once. As a side effect of this, readline() now supports all types of linebreaks supported by unicode.splitlines(). Note that the tokenizer is still broken and it's possible to provoke segfaults (see http://www.python.org/sf/1089395).
* Backport from trunk: add accidentally removed \end{description} back in.Johannes Gijsbers2004-12-211-0/+1
|
* Mentioned marshal.dumps()'s fix in the NEWS.Armin Rigo2004-12-211-0/+3
|
* SF bug #951915: fix bug in StringIO.truncate - length not changedRaymond Hettinger2004-12-202-0/+9
| | | | (Patch by Armin Rigo.)
* Back-ported: marshal.dumps() with the new optional argument 'version' justArmin Rigo2004-12-203-4/+9
| | | | immediately segfaults, due to a typo!
* Bug #1088206: zlib decompressobj documentation typoRaymond Hettinger2004-12-201-1/+1
|
* Bugs item #1069409 C:\Python24\Lib\compileall.py returns FalseRaymond Hettinger2004-12-201-1/+1
| | | | * return an integer rather than a boolean
* * reworked berkeleydb include and library detection code in setup.pyGregory P. Smith2004-12-192-71/+95
| | | | | to make sure the library version that matches the header file is used. * update the bsddb module docs to indicate BerkeleyDB 3.2 thru 4.3 support
* Bug #1079011: Incorrect error message (somewhat)Raymond Hettinger2004-12-191-1/+1
|
* Bug #1066607: "Limitations" section of profiler docs is incorrectRaymond Hettinger2004-12-191-10/+1
|
* Bug #1087216: datetime module documentation missing critical detailRaymond Hettinger2004-12-191-3/+9
|
* Backport fix for bug #1083645 have test_imp be skipped if threading is notBrett Cannon2004-12-181-1/+5
| | | | available.