summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #5924: on Windows, a large PYTHONPATH (more than 255 chars) was completely ↵Amaury Forgeot d'Arc2009-06-093-3/+21
| | | | | | ignored. Will backport to 3.0.
* Add notes for porting issues related to pickles.Raymond Hettinger2009-06-091-0/+5
|
* Add example for the change to pickle and note the effect of the fix_imports ↵Raymond Hettinger2009-06-091-18/+24
| | | | option.
* Blocked revisions 73314 via svnmergeEric Smith2009-06-090-0/+0
| | | | | | | | ........ r73314 | eric.smith | 2009-06-09 08:38:08 -0400 (Tue, 09 Jun 2009) | 1 line Restored a test that was erroneously removed. See issue 6198. ........
* Merged revisions 73305 via svnmerge fromRonald Oussoren2009-06-083-1/+15
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73305 | ronald.oussoren | 2009-06-08 14:12:41 -0700 (Mon, 08 Jun 2009) | 4 lines This is a fix for Issue5809: you shouldn't specify both --enable-framework and --enable-shared ........
* Merged revisions 73303 via svnmerge fromRonald Oussoren2009-06-081-0/+1
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73303 | ronald.oussoren | 2009-06-08 13:54:59 -0700 (Mon, 08 Jun 2009) | 11 lines This checkin adds a symlink to the lib directory of a framework install of Python (on OSX), and the end result of that is that the combination of ``python-config --ldflags`` and ``python-config --libs`` refers to an actually existing location. I've done this in preference to changing python-config to specify '-framework Python' for linking because that doesn't work when you have multiple versions of python installed (because '-framework Python' will always link to the 'Current' version of the framework, without a possibility to specify a specific version). ........
* Fix markup.Georg Brandl2009-06-081-3/+3
|
* Fix typo.Thomas Heller2009-06-081-1/+1
|
* Elaborate encoding recommendations, and fix ambiguous wording for list ↵Georg Brandl2009-06-082-9/+13
| | | | comprehensions.
* Blocked revisions 73296 via svnmergeGeorg Brandl2009-06-080-0/+0
| | | | | | | | ........ r73296 | georg.brandl | 2009-06-08 18:03:41 +0200 (Mo, 08 Jun 2009) | 1 line #6238: add fillchar to string.just function family. ........
* Merged revisions 73190,73213,73257-73258,73260,73275,73294 via svnmerge fromGeorg Brandl2009-06-088-19/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73190 | georg.brandl | 2009-06-04 01:23:45 +0200 (Do, 04 Jun 2009) | 2 lines Avoid PendingDeprecationWarnings emitted by deprecated unittest methods. ........ r73213 | georg.brandl | 2009-06-04 12:15:57 +0200 (Do, 04 Jun 2009) | 1 line #5967: note that the C slicing APIs do not support negative indices. ........ r73257 | georg.brandl | 2009-06-06 19:50:05 +0200 (Sa, 06 Jun 2009) | 1 line #6211: elaborate a bit on ways to call the function. ........ r73258 | georg.brandl | 2009-06-06 19:51:31 +0200 (Sa, 06 Jun 2009) | 1 line #6204: use a real reference instead of "see later". ........ r73260 | georg.brandl | 2009-06-06 20:21:58 +0200 (Sa, 06 Jun 2009) | 1 line #6224: s/JPython/Jython/, and remove one link to a module nine years old. ........ r73275 | georg.brandl | 2009-06-07 22:37:52 +0200 (So, 07 Jun 2009) | 1 line Add Ezio. ........ r73294 | georg.brandl | 2009-06-08 15:34:52 +0200 (Mo, 08 Jun 2009) | 1 line #6194: O_SHLOCK/O_EXLOCK are not really more platform independent than lockf(). ........
* Review ctypes docs w.r.t. bytes/unicode. Use bytes where appropriate as the ↵Georg Brandl2009-06-081-225/+218
| | | | type for C strings. Lots of small markup fixes. Also fixes #4309.
* Signature documentation style update, modules J, K, L and M.Georg Brandl2009-06-0820-116/+100
|
* Fix default value in docstring.Georg Brandl2009-06-081-2/+2
|
* Use boolean for another flag option.Georg Brandl2009-06-081-1/+1
|
* Use a real bool for a flag option.Georg Brandl2009-06-081-1/+1
|
* Recorded merge of revisions 73286 via svnmerge fromGeorg Brandl2009-06-083-8/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73286 | georg.brandl | 2009-06-08 09:57:35 +0200 (Mo, 08 Jun 2009) | 1 line Remove period from end of headings. ........
* #6235: ASCII also affects \[dD] escapes.Georg Brandl2009-06-081-3/+3
|
* Remove duplicated sentence. Remove duplicated sentence.Georg Brandl2009-06-081-2/+1
|
* Blocked revisions 73282 via svnmergeBenjamin Peterson2009-06-070-0/+0
| | | | | | | | ........ r73282 | benjamin.peterson | 2009-06-07 18:12:44 -0500 (Sun, 07 Jun 2009) | 1 line backport r73273 ........
* When _locale became a built-in module it was discovered that ``-lintl`` was notBrett Cannon2009-06-074-5/+14
| | | | | | | | added as a build flag as needed. This then led to the discovery that OS X framework builds did not have the LIBS var to pick up this flag. Fixes issue #6154. Thanks to Benjamin Peterson, Roumen Petrov, Erick Tryzelaar, Mark Dickinson, Evan Behar, and Ronald Oussoren for helping.
* Issue #6221: Delete test registry key before running the test.Martin v. Löwis2009-06-072-0/+23
|
* Blocked revisions 73270 via svnmergeBenjamin Peterson2009-06-070-0/+0
| | | | | | | | ........ r73270 | benjamin.peterson | 2009-06-07 11:24:48 -0500 (Sun, 07 Jun 2009) | 1 line backport r73268 ........
* Fix symlink for 2to3 in framework install. Without this patch an incorrect ↵Ronald Oussoren2009-06-071-1/+1
| | | | link is created when DESTDIR is set.
* Fix for issue 6202Ronald Oussoren2009-06-072-36/+2
|
* stop throwing out all errors when PyObject_GetAttr failsBenjamin Peterson2009-06-061-6/+19
|
* give the C implementation of TextIOWrapper the errors property #6217Benjamin Peterson2009-06-067-26/+50
|
* Add what's new entry for r73236.Antoine Pitrou2009-06-061-0/+18
|
* Merged revisions 73250 via svnmerge fromBenjamin Peterson2009-06-051-3/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73250 | benjamin.peterson | 2009-06-05 14:09:28 -0500 (Fri, 05 Jun 2009) | 1 line only test for named pipe when os.stat doesn't raise #6209 ........
* Blocked revisions 73243 via svnmergeTarek Ziadé2009-06-050-0/+0
| | | | | | | | ........ r73243 | tarek.ziade | 2009-06-05 15:37:29 +0200 (Fri, 05 Jun 2009) | 1 line reverting r72823 : Python trunk has to use latin-1 encoding ........
* Blocked revisions 73240 via svnmergeEric Smith2009-06-050-0/+0
| | | | | | | | ........ r73240 | eric.smith | 2009-06-05 08:33:26 -0400 (Fri, 05 Jun 2009) | 1 line Removed tests so that test_float pass on Windows. See issue 6198. ........
* Issue #6137: The pickle module now translates module names when loadingAntoine Pitrou2009-06-048-157/+532
| | | | | | or dumping pickles with a 2.x-compatible protocol, in order to make data sharing and migration easier. This behaviour can be disabled using the new `fix_imports` optional argument.
* Merged revisions 73232 via svnmerge fromGeorg Brandl2009-06-041-0/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73232 | georg.brandl | 2009-06-04 20:59:58 +0200 (Do, 04 Jun 2009) | 1 line Add test for #3684. ........
* Remove the ipaddr module per discussion on python-dev.Raymond Hettinger2009-06-045-2403/+2
|
* Merged revisions 73224 via svnmerge fromEric Smith2009-06-041-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73224 | eric.smith | 2009-06-04 13:58:15 -0400 (Thu, 04 Jun 2009) | 1 line Minor documentation fixes for logging. ........
* Take ipaddr out of whatsnew.Raymond Hettinger2009-06-041-37/+0
|
* Merged revisions 73217 via svnmerge fromGeorg Brandl2009-06-041-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73217 | georg.brandl | 2009-06-04 12:27:21 +0200 (Do, 04 Jun 2009) | 1 line #6175: document that inet_aton supports alternate input formats with less than three dots. ........
* Merged revisions 73215 via svnmerge fromGeorg Brandl2009-06-041-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73215 | georg.brandl | 2009-06-04 12:22:31 +0200 (Do, 04 Jun 2009) | 1 line #6176: fix man page section for flock(2). ........
* Merged revisions 73186,73206,73212 via svnmerge fromGeorg Brandl2009-06-043-10/+10
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73186 | georg.brandl | 2009-06-03 23:21:09 +0200 (Mi, 03 Jun 2009) | 1 line #6174: fix indentation in code example. ........ r73206 | georg.brandl | 2009-06-04 11:15:12 +0200 (Do, 04 Jun 2009) | 1 line #3584: ignore trailing newlines when placing the caret for a SyntaxError location. ........ r73212 | georg.brandl | 2009-06-04 12:10:41 +0200 (Do, 04 Jun 2009) | 1 line Better name for "Ctor". ........
* More codestring -> codebytes.Georg Brandl2009-06-0410-15/+16
|
* Remove nonexisting stuff from __all__.Georg Brandl2009-06-042-4/+0
|
* #3791: remove last traces of bsddb.Georg Brandl2009-06-0418-292/+26
|
* #3613: add base64.encodebytes and decodebytes as the new spelling of ↵Georg Brandl2009-06-046-48/+66
| | | | encodestring and decodestring; deprecate the latter.
* Remove mentions of the nonexisting SlowParser in xmlrpc.client.Georg Brandl2009-06-041-28/+19
|
* Recorded merge of revisions 73201 via svnmerge fromGeorg Brandl2009-06-042-54/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73201 | georg.brandl | 2009-06-04 10:58:32 +0200 (Do, 04 Jun 2009) | 1 line #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do much validation and is no longer much faster than e.g. the cElementTree XMLParser. ........
* Merged revisions 73197 via svnmerge fromTarek Ziadé2009-06-042-46/+123
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73197 | tarek.ziade | 2009-06-04 09:31:52 +0200 (Thu, 04 Jun 2009) | 1 line improved test coverage for distutils.command.install and cleaned it up ........
* Issue #5373: Remove restriction on null bytes in docstrings of classes.Alexandre Vassalotti2009-06-041-7/+3
|
* Fix __all__.Raymond Hettinger2009-06-041-1/+2
|
* Use new form of with-statement instead of contextlib.nested().Raymond Hettinger2009-06-044-12/+11
|
* Remove the application stub for Python Launcher. ThisRonald Oussoren2009-06-0310-300/+0
| | | | | | | | directory structure isn't used during the build and causes problems when you do build without a separate build directory. Fixes issue 5267