summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 80298 via svnmerge fromRonald Oussoren2010-04-211-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80298 | ronald.oussoren | 2010-04-21 08:00:35 +0200 (Wed, 21 Apr 2010) | 2 lines Sync test_plistlib.py with plistlib.py ........
* Merged revisions 80144 via svnmerge fromR. David Murray2010-04-212-0/+13
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80144 | r.david.murray | 2010-04-17 01:26:26 -0400 (Sat, 17 Apr 2010) | 8 lines Issue #3864: Skip three test_signal tests on freebsd6 due to platform bug. Two itimer tests and an interprocess signal test fail on FreeBSD 6 if any test that starts a thread runs before test_signal. Since FreeBSD7 does not show this behavior, the bug is most likely a platform bug, so this patch just skips the failing tests on freebsd6. ........
* Rework delta_divmod to avoid use of PyTuple_SetItem.Mark Dickinson2010-04-201-5/+8
|
* Fix memory leak.Mark Dickinson2010-04-201-3/+2
|
* Issue #2706: Add support for dividing a timedelta by another timedelta.Mark Dickinson2010-04-204-6/+224
| | | | | | | | | | | | | Adds support for the three division operations: - timedelta / timedelta -> float - timedelta // timedelta -> int - timedelta % timedelta -> timedelta also adds support for divmod(timedelta, timedelta). Patch by Victor Stinner, adapted for py3k and extended by Alexander Belopolsky.
* Merged revisions 80288 via svnmerge fromVictor Stinner2010-04-203-15/+36
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80288 | victor.stinner | 2010-04-21 00:28:31 +0200 (mer., 21 avril 2010) | 2 lines Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm ........
* Merged revisions 80282 via svnmerge fromTarek Ziadé2010-04-203-61/+11
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80282 | tarek.ziade | 2010-04-20 23:09:06 +0200 (Tue, 20 Apr 2010) | 1 line removed ztar support in shutil.make_archive ........
* Merged revisions 80279 via svnmerge fromRonald Oussoren2010-04-201-1/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80279 | ronald.oussoren | 2010-04-20 22:59:37 +0200 (Tue, 20 Apr 2010) | 3 lines Fix for issue 7852: the DTD for OSX Plists has changed due to a change in the company name for Apple. ........
* Merged revisions 80277 via svnmerge fromSenthil Kumaran2010-04-202-6/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80277 | senthil.kumaran | 2010-04-21 02:07:59 +0530 (Wed, 21 Apr 2010) | 3 lines Issue2987 - Added additional Invalid URL and changed the Invalid URL checking code for better. ........
* * Fixes cut&paste error in configureRonald Oussoren2010-04-204-4/+7
| | | | | * Ensure that framework install works given the recent CFLAGS and BASECFLAGS changes
* Merged revisions 80274 via svnmerge fromMatthias Klose2010-04-201-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80274 | matthias.klose | 2010-04-20 21:45:34 +0200 (Di, 20 Apr 2010) | 2 lines fix typo in r79533, introduced by the fix for issue #8233 ........
* Markup nit.Georg Brandl2010-04-201-1/+1
|
* Blocked revisions 80270 via svnmergeEzio Melotti2010-04-200-0/+0
| | | | | | | | ........ r80270 | ezio.melotti | 2010-04-20 19:49:48 +0300 (Tue, 20 Apr 2010) | 1 line #8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools.ifilterfalse ........
* Updated version numbers from 2.7 to 3.2Brian Curtin2010-04-202-2/+6
| | | | | | | | | | | Merged revisions 80265 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80265 | brian.curtin | 2010-04-20 10:23:18 -0500 (Tue, 20 Apr 2010) | 2 lines Add version info for os.kill and signal changes from #1220212. ........
* fixed typo -- thanks NickTarek Ziadé2010-04-202-2/+2
|
* Add missing arg, fix indentation and spelling.Ezio Melotti2010-04-201-5/+5
|
* Fix two versionchanged.Ezio Melotti2010-04-202-2/+2
|
* Merged revisions 80236 via svnmerge fromSenthil Kumaran2010-04-201-6/+18
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80236 | senthil.kumaran | 2010-04-20 12:24:59 +0530 (Tue, 20 Apr 2010) | 3 lines Fix Issue8460: Victor's patch to add timeout in test_urllib2net test_urls. ........
* Merged revisions 79963,80024,80064,80070,80085,80088 via svnmerge fromEzio Melotti2010-04-201-38/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79963 | andrew.kuchling | 2010-04-11 23:40:09 +0300 (Sun, 11 Apr 2010) | 1 line Add several items ........ r80024 | andrew.kuchling | 2010-04-13 04:32:51 +0300 (Tue, 13 Apr 2010) | 1 line Add an item; stray edit ........ r80064 | andrew.kuchling | 2010-04-14 04:14:59 +0300 (Wed, 14 Apr 2010) | 1 line Add argparse example ........ r80070 | andrew.kuchling | 2010-04-14 17:28:31 +0300 (Wed, 14 Apr 2010) | 1 line Add some text ........ r80085 | andrew.kuchling | 2010-04-15 02:55:17 +0300 (Thu, 15 Apr 2010) | 1 line Add various items; correct argparse output ........ r80088 | andrew.kuchling | 2010-04-15 04:42:27 +0300 (Thu, 15 Apr 2010) | 1 line Add various items ........
* Update the python version in the interpreter tutorial.Ezio Melotti2010-04-201-1/+1
|
* Fix versionadded in unittest.rst.Ezio Melotti2010-04-201-6/+6
|
* added a note on shutil.copytree improvementsTarek Ziadé2010-04-201-0/+11
|
* Fixed #6547: Added the ignore_dangling_symlinks option to shutil.copytreeTarek Ziadé2010-04-204-5/+52
|
* Merged revisions 80238 via svnmerge fromStefan Krah2010-04-201-8/+10
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80238 | stefan.krah | 2010-04-20 09:59:10 +0200 (Tue, 20 Apr 2010) | 9 lines 1) The timeout in the itimer tests was too low for slow or heavily loaded machines. 2) Even with the increased timeout, the OS does not guarantee that a process will get a certain amount of virtual time in 60s, so the failure is changed to a diagnostic. ........
* Merged revisions 80232 via svnmerge fromRonald Oussoren2010-04-201-0/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80232 | ronald.oussoren | 2010-04-20 07:50:44 +0200 (Tue, 20 Apr 2010) | 3 lines Explicitly set system default for $PATH to ensure we have a clean build environment (OSX installer) ........
* Fixed #1540112: now shutil.copytree will let you provide your own copy() ↵Tarek Ziadé2010-04-194-27/+51
| | | | function
* Merged revisions 80226 via svnmerge fromGiampaolo Rodolà2010-04-192-0/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80226 | giampaolo.rodola | 2010-04-19 23:46:28 +0200 (lun, 19 apr 2010) | 1 line Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands ........
* Merged revisions 80221 via svnmerge fromTarek Ziadé2010-04-193-2/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80221 | tarek.ziade | 2010-04-19 23:28:21 +0200 (Mon, 19 Apr 2010) | 1 line Fixed #8463: added missing reference to bztar in shutil's documentation. ........
* Merged revisions 80218 via svnmerge fromTarek Ziadé2010-04-191-2/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80218 | tarek.ziade | 2010-04-19 23:13:03 +0200 (Mon, 19 Apr 2010) | 1 line few pep8 fixes ........
* Blocked revisions 80215 via svnmergeAntoine Pitrou2010-04-190-0/+0
| | | | | | | | | ........ r80215 | antoine.pitrou | 2010-04-19 20:52:43 +0200 (lun., 19 avril 2010) | 4 lines Issue #8438: Remove reference to the missing "surrogateescape" encoding error handler from the new IO library. ........
* Remove obsolete mention of IRIX native threads -- we don't use them anymore.Antoine Pitrou2010-04-191-5/+3
|
* Add version{added,changed} for lock timeout support.Antoine Pitrou2010-04-192-0/+11
|
* I'll maintain syslog. I've made most of the "recent" changes to it anyway.Sean Reifscheider2010-04-191-1/+1
|
* Blocked revisions 80202 via svnmergeBenjamin Peterson2010-04-180-0/+0
| | | | | | | | ........ r80202 | raymond.hettinger | 2010-04-18 17:57:57 -0500 (Sun, 18 Apr 2010) | 1 line Issue 8436: set.__init__ accepts keyword args ........
* Issue 8436: set.__init__ accepts keyword argsRaymond Hettinger2010-04-182-0/+3
|
* For for issue #5652Ronald Oussoren2010-04-181-10/+0
|
* For for issue #7154: Port the code that usesRonald Oussoren2010-04-184-27/+335
| | | | | the SystemConfiguration framework to detect the proxy settings on OSX from the trunk to python 3.2
* Issue 8420: Fix ref counting problem in set_repr().Raymond Hettinger2010-04-181-3/+1
|
* Merged revisions 80194 via svnmerge fromAntoine Pitrou2010-04-181-16/+13
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80194 | antoine.pitrou | 2010-04-18 21:14:38 +0200 (dim., 18 avril 2010) | 3 lines Fix catastrophic file opening and closing logic in test_linecache ........
* Merged revisions 80187 via svnmerge fromRonald Oussoren2010-04-182-23/+57
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80187 | ronald.oussoren | 2010-04-18 19:59:37 +0200 (Sun, 18 Apr 2010) | 6 lines Add the OSX universal binary related options to CFLAGS instead of BASECFLAGS. This fixes issue 8366 and is needed due to changes introduced in the fix for issue 1628484. ........
* Revert r80167, it breaks build on many platformsVictor Stinner2010-04-181-15/+13
|
* Merged revisions 80179 via svnmerge fromRonald Oussoren2010-04-181-0/+51
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80179 | ronald.oussoren | 2010-04-18 16:01:05 +0200 (Sun, 18 Apr 2010) | 5 lines Add check to build-installer.py to ensure that the right version of Tcl/Tk is available (on OSX) Fixes issue #5651 ........
* Merged revisions 80178 via svnmerge fromRonald Oussoren2010-04-183-2/+22
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80178 | ronald.oussoren | 2010-04-18 15:47:49 +0200 (Sun, 18 Apr 2010) | 2 lines Fix for issue #7072 ........
* Move _Py_char2wchar from python.c to main.c.Ronald Oussoren2010-04-183-103/+105
| | | | | | | This fixes issue #8441: python.c is not included in the framework while main.c is and without this patch you get a link error when building Python.framework on OSX.
* Merged revisions 80172 via svnmerge fromGiampaolo Rodolà2010-04-182-1/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80172 | giampaolo.rodola | 2010-04-18 14:55:03 +0200 (dom, 18 apr 2010) | 1 line Fix Issue #3817: 225 is now considered a valid response code for ABOR ........
* Remove colspanning cells.Georg Brandl2010-04-181-4/+4
|
* Merged revisions 80166 via svnmerge fromVictor Stinner2010-04-181-13/+15
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80166 | victor.stinner | 2010-04-18 11:07:49 +0200 (dim., 18 avril 2010) | 7 lines platform: use subprocess.Popen() instead of os.popen() in _syscmd_file() * Popen() avoids ugly shell escape: target.replace('"', '\\"') * Use proc.communicate() instead of f.stdout.read() * Get output from stdout by splitting with ": " instead of splitting by spaces to support filename with spaces ........
* Issue #8422, test_genericpath: skip the creation of a directory with an invalidVictor Stinner2010-04-181-0/+4
| | | | | UTF name on Mac OS X because the OS deny it (the name have to be a valid UTF8 string).
* Issue #8340, test_abs_path() of test_site: encode paths to ASCII withVictor Stinner2010-04-181-7/+12
| | | | | backslashreplace to avoid locale issues, don't write stderr to a pipe to ease debug, separate directories by newlines instead of a space.
* Issue #8394: _ctypes.dlopen() accepts bytes, bytearray and str withVictor Stinner2010-04-182-3/+19
| | | | surrogates.