]>
granicus.if.org Git - python/log
Senthil Kumaran [Tue, 5 Oct 2010 18:45:00 +0000 (18:45 +0000)]
Merged revisions 85232 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85232 | senthil.kumaran | 2010-10-06 00:05:41 +0530 (Wed, 06 Oct 2010) | 3 lines
Remove the references of FTPS from the urllib Documentation. There is no support for it yet.
........
Éric Araujo [Mon, 4 Oct 2010 23:59:35 +0000 (23:59 +0000)]
Merged revisions 85223 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85223 | eric.araujo | 2010-10-05 01:52:37 +0200 (mar., 05 oct. 2010) | 3 lines
Fix interaction of custom translation classes and caching (#9042)
........
Lars Gustäbel [Mon, 4 Oct 2010 15:37:53 +0000 (15:37 +0000)]
Merged revisions 85211 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85211 | lars.gustaebel | 2010-10-04 17:18:47 +0200 (Mon, 04 Oct 2010) | 14 lines
Issue #9065: no longer use "root" as the default for the
uname and gname field.
If tarfile creates a new archive and adds a file with a
uid/gid that doesn't have a corresponding name on the
system (e.g. because the user/group account was deleted) it
uses the empty string in the uname/gname field now instead
of "root". Using "root" as the default was a bad idea
because on extraction the uname/gname fields are supposed
to override the uid/gid fields. So, all archive members
with nameless uids/gids belonged to the root user after
extraction.
........
Senthil Kumaran [Sun, 3 Oct 2010 18:26:07 +0000 (18:26 +0000)]
Merged revisions 85205 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85205 | senthil.kumaran | 2010-10-03 23:52:42 +0530 (Sun, 03 Oct 2010) | 3 lines
Fix Issue10012 - httplib headers, which are (sometimes mistakenly) int are explicitly cast to str (bytes - in py3k).
........
Senthil Kumaran [Sun, 3 Oct 2010 18:16:52 +0000 (18:16 +0000)]
Merged revisions 85202 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85202 | senthil.kumaran | 2010-10-03 23:25:45 +0530 (Sun, 03 Oct 2010) | 4 lines
Fix Issue9272 - Change CGIHTTPServer to give the child program a copy of os.environ
........
Tarek Ziadé [Sun, 3 Oct 2010 14:50:55 +0000 (14:50 +0000)]
Blocked revisions 85197,85199 via svnmerge
........
r85197 | tarek.ziade | 2010-10-03 16:18:09 +0200 (Sun, 03 Oct 2010) | 1 line
Fixed #8980: distutils.command.check was failing w/ docutils installed
........
r85199 | tarek.ziade | 2010-10-03 16:45:06 +0200 (Sun, 03 Oct 2010) | 1 line
typo in Arfrever name
........
Benjamin Peterson [Sun, 3 Oct 2010 02:17:04 +0000 (02:17 +0000)]
Merged revisions 85193 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85193 | benjamin.peterson | 2010-10-02 21:13:39 -0500 (Sat, 02 Oct 2010) | 1 line
typo
........
R. David Murray [Sat, 2 Oct 2010 16:26:05 +0000 (16:26 +0000)]
Merged revisions 85179 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85179 | r.david.murray | 2010-10-02 11:58:26 -0400 (Sat, 02 Oct 2010) | 6 lines
#
1050268 : make parseaddr 'quote' the contents of quoted strings in addresses.
Also made the doc string for email._parseaddr's 'quote' function more
accurate; I'd love to make the function match the old docstring instead,
but other code uses it according the existing semantics.
........
Senthil Kumaran [Sat, 2 Oct 2010 10:43:45 +0000 (10:43 +0000)]
Merged revisions 85169 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85169 | senthil.kumaran | 2010-10-02 16:03:13 +0530 (Sat, 02 Oct 2010) | 3 lines
Use proper variable name 'data' instead of 'str' in the send method.
........
Senthil Kumaran [Sat, 2 Oct 2010 03:29:31 +0000 (03:29 +0000)]
Merged revisions 85156 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85156 | senthil.kumaran | 2010-10-02 08:46:04 +0530 (Sat, 02 Oct 2010) | 3 lines
Fix - issue10010 .. index:: position in the docs.
........
Benjamin Peterson [Sat, 2 Oct 2010 00:08:58 +0000 (00:08 +0000)]
Merged revisions 85154 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85154 | benjamin.peterson | 2010-10-01 19:03:31 -0500 (Fri, 01 Oct 2010) | 1 line
type.__abstractmethods__ should raise an AttributeError #10006
........
Brian Curtin [Fri, 1 Oct 2010 16:44:03 +0000 (16:44 +0000)]
Merged revisions 85140 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85140 | brian.curtin | 2010-10-01 09:49:24 -0500 (Fri, 01 Oct 2010) | 4 lines
Fix #10003. Add SIGBREAK to the set of valid signals on Windows.
This fixes a regression noticed by bzr, introduced by issue #9324.
........
R. David Murray [Fri, 1 Oct 2010 15:48:49 +0000 (15:48 +0000)]
Merged revisions 85142 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85142 | r.david.murray | 2010-10-01 11:40:20 -0400 (Fri, 01 Oct 2010) | 5 lines
#10004: in Q encoded word ignore '=xx' when xx is not valid hex.
Bug report and fix by Thomas Guettler.
........
Alexander Belopolsky [Fri, 1 Oct 2010 14:26:35 +0000 (14:26 +0000)]
Blocked revisions 85137 via svnmerge
........
r85137 | alexander.belopolsky | 2010-10-01 10:18:49 -0400 (Fri, 01 Oct 2010) | 3 lines
Issue #6608: time.asctime is now checking struct tm fields its input
before passing it to the system asctime. Patch by MunSic Jeong.
........
Hirokazu Yamamoto [Fri, 1 Oct 2010 10:48:47 +0000 (10:48 +0000)]
Cosmetic fix to use print function.
Senthil Kumaran [Thu, 30 Sep 2010 06:40:56 +0000 (06:40 +0000)]
Added BaseHTTPRequestHandler related tests.
Brian Curtin [Wed, 29 Sep 2010 14:56:32 +0000 (14:56 +0000)]
Merged revisions 85109 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85109 | brian.curtin | 2010-09-29 09:51:42 -0500 (Wed, 29 Sep 2010) | 4 lines
Fix #9978. WINFUNCTYPE is from ctypes, not from ctypes.wintypes.
r85073 changed the importing in wintypes to not use *, so the previous
usage here became even more incorrect.
........
Antoine Pitrou [Wed, 29 Sep 2010 11:30:52 +0000 (11:30 +0000)]
Merged revisions 85101 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85101 | antoine.pitrou | 2010-09-29 13:24:21 +0200 (mer., 29 sept. 2010) | 3 lines
Issue #9983: warn that urllib and httplib don't perform SSL certificate validation.
........
Hirokazu Yamamoto [Wed, 29 Sep 2010 08:38:37 +0000 (08:38 +0000)]
Recorded rollback of revisions 84857,84870,84875 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
Ronald Oussoren [Tue, 28 Sep 2010 15:46:28 +0000 (15:46 +0000)]
Fix for issue 81275: don't say that the MacPython OSA modules will get new development
in python 2.5 (!), but point users to the py-appscript project instead.
Antoine Pitrou [Tue, 28 Sep 2010 15:35:18 +0000 (15:35 +0000)]
Merged revisions 85066 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85066 | antoine.pitrou | 2010-09-28 17:29:16 +0200 (mar., 28 sept. 2010) | 3 lines
Issue #9970: improve C API documentation for memoryview objects
........
Ronald Oussoren [Tue, 28 Sep 2010 14:43:59 +0000 (14:43 +0000)]
Merged revisions 85062 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85062 | ronald.oussoren | 2010-09-28 16:38:31 +0200 (Tue, 28 Sep 2010) | 3 lines
Fix for issue #9568.
........
Ronald Oussoren [Tue, 28 Sep 2010 14:01:49 +0000 (14:01 +0000)]
Merged revisions 85059 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85059 | ronald.oussoren | 2010-09-28 15:57:58 +0200 (Tue, 28 Sep 2010) | 5 lines
Add support for the ZSH shell to the "Update Shell Profile" script
on MacOSX.
Patch by Sylvain Mora, issue #9701.
........
Hirokazu Yamamoto [Tue, 28 Sep 2010 08:19:18 +0000 (08:19 +0000)]
Sorry, I committed into wrong branch. So reverted it.
Hirokazu Yamamoto [Tue, 28 Sep 2010 07:35:56 +0000 (07:35 +0000)]
Run test_ttk_guionly in verbose mode.
Hirokazu Yamamoto [Mon, 27 Sep 2010 19:16:07 +0000 (19:16 +0000)]
Blocked revisions 84762,84876,84897,84902,84949 via svnmerge
........
r84762 | hirokazu.yamamoto | 2010-09-13 14:59:38 +0900 | 1 line
Updated PC/VS8.0 with PCBuild/vs9to8.py.
........
r84876 | hirokazu.yamamoto | 2010-09-18 13:42:41 +0900 | 1 line
In Python3000, Tkinter was renamed to tkinter. And print is now function.
........
r84897 | hirokazu.yamamoto | 2010-09-19 17:31:01 +0900 | 1 line
Set svn:ignore to folders.
........
r84902 | hirokazu.yamamoto | 2010-09-19 18:24:20 +0900 | 1 line
Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
........
r84949 | hirokazu.yamamoto | 2010-09-22 01:05:47 +0900 | 1 line
Revert r84902 before committing better solution.
........
Antoine Pitrou [Mon, 27 Sep 2010 18:16:46 +0000 (18:16 +0000)]
Merged revisions 85032 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85032 | antoine.pitrou | 2010-09-27 19:52:25 +0200 (lun., 27 sept. 2010) | 6 lines
Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is
received. Now sendall() properly calls signal handlers if necessary,
and retries sending if these returned successfully, including on sockets
with a timeout.
........
Vinay Sajip [Mon, 27 Sep 2010 13:53:47 +0000 (13:53 +0000)]
logging: Updated library configuration documentation.
Senthil Kumaran [Mon, 27 Sep 2010 01:40:59 +0000 (01:40 +0000)]
Merged revisions 85025 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85025 | senthil.kumaran | 2010-09-27 06:56:03 +0530 (Mon, 27 Sep 2010) | 6 lines
Fix Issue1595365 - Adding the req.headers after the un-redirect headers have
been added. This helps in accidental overwritting of User-Agent header to
default value. To preserve the old behavior, only headers not in unredirected
headers will be updated.
........
Benjamin Peterson [Sun, 26 Sep 2010 23:49:20 +0000 (23:49 +0000)]
versionadded #9956
Alexander Belopolsky [Sun, 26 Sep 2010 23:37:17 +0000 (23:37 +0000)]
Merged revisions 85000 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85000 | alexander.belopolsky | 2010-09-24 18:04:22 -0400 (Fri, 24 Sep 2010) | 1 line
This should fix buildbot failure introduced by r84994
........
Vinay Sajip [Sun, 26 Sep 2010 11:04:10 +0000 (11:04 +0000)]
logging: NullHandler optimisation.
Mark Dickinson [Sun, 26 Sep 2010 10:37:12 +0000 (10:37 +0000)]
Issue #9869: Make long() and PyNumber_Long return something of type
long for a class whose __long__ method returns a plain int. This
fixes an interpreter crash (due to long_subtype_new assuming
PyNumber_Long returns a long) when initializing an instance of a long
subclass from an object whose __long__ method returns a plain int.
Vinay Sajip [Sat, 25 Sep 2010 17:48:25 +0000 (17:48 +0000)]
Issue #9947: logging: Fixed locking bug in stopListening.
Vinay Sajip [Sat, 25 Sep 2010 17:42:36 +0000 (17:42 +0000)]
Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler.
Georg Brandl [Sat, 25 Sep 2010 13:46:23 +0000 (13:46 +0000)]
#1865: document syntax for bytes literals.
Georg Brandl [Sat, 25 Sep 2010 13:31:21 +0000 (13:31 +0000)]
Fix typo.
Benjamin Peterson [Sat, 25 Sep 2010 03:27:12 +0000 (03:27 +0000)]
Rolled back revisions 85003 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
Benjamin Peterson [Sat, 25 Sep 2010 03:17:56 +0000 (03:17 +0000)]
Merged revisions 85003 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85003 | benjamin.peterson | 2010-09-24 22:14:33 -0500 (Fri, 24 Sep 2010) | 1 line
don't count keyword arguments as positional #9943
........
Brian Curtin [Sat, 25 Sep 2010 02:36:46 +0000 (02:36 +0000)]
#9934. Correct a typo that was already fixed on py3k.
Antoine Pitrou [Fri, 24 Sep 2010 19:00:29 +0000 (19:00 +0000)]
Merged revisions 84997 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84997 | antoine.pitrou | 2010-09-24 20:57:01 +0200 (ven., 24 sept. 2010) | 3 lines
Make _kill_process more robust under Windows too (see issue #8432)
........
Alexander Belopolsky [Fri, 24 Sep 2010 18:14:18 +0000 (18:14 +0000)]
Merged revisions 84994 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84994 | alexander.belopolsky | 2010-09-24 14:03:12 -0400 (Fri, 24 Sep 2010) | 1 line
Issue #9936: Fixed executable lines' search in the trace module.
........
Antoine Pitrou [Thu, 23 Sep 2010 19:55:24 +0000 (19:55 +0000)]
Merged revisions 84980 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84980 | antoine.pitrou | 2010-09-23 21:51:39 +0200 (jeu., 23 sept. 2010) | 3 lines
Issue #9928: Properly initialize the types exported by the bz2 module.
........
Hirokazu Yamamoto [Thu, 23 Sep 2010 15:59:21 +0000 (15:59 +0000)]
Issue #9287: Minor fix in test_file2k.OtherFileTests.testOpenDir
Brian Curtin [Thu, 23 Sep 2010 13:48:06 +0000 (13:48 +0000)]
Merged revisions 84971 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84971 | brian.curtin | 2010-09-23 08:45:21 -0500 (Thu, 23 Sep 2010) | 2 lines
#9582 - add a missing "are" and reflow the line.
........
Senthil Kumaran [Wed, 22 Sep 2010 05:45:14 +0000 (05:45 +0000)]
Update the cookie documentation. Use SimpleCookie instead of SmartCookie/SerialCookie.
Hirokazu Yamamoto [Tue, 21 Sep 2010 18:56:51 +0000 (18:56 +0000)]
Updated VS8.0 project files with PCBuild/vs9to8.py.
Alexander Belopolsky [Tue, 21 Sep 2010 16:43:35 +0000 (16:43 +0000)]
Blocked revisions 84953 via svnmerge
........
r84953 | alexander.belopolsky | 2010-09-21 12:30:56 -0400 (Tue, 21 Sep 2010) | 1 line
Fixed microsecond rounding in python version of utcfromtimestamp
........
Hirokazu Yamamoto [Tue, 21 Sep 2010 16:25:21 +0000 (16:25 +0000)]
Recorded rollback of revisions 84902 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
Antoine Pitrou [Tue, 21 Sep 2010 15:23:17 +0000 (15:23 +0000)]
Merged revisions 84946 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84946 | antoine.pitrou | 2010-09-21 17:19:14 +0200 (mar., 21 sept. 2010) | 4 lines
Issue #
1633863 : Don't ignore $CC under AIX.
........
Marc-André Lemburg [Tue, 21 Sep 2010 11:56:39 +0000 (11:56 +0000)]
Merged revisions 84941 via svnmerge from
svn+pythonssh://pythondev@svn.python.org/python/branches/py3k
........
r84941 | marc-andre.lemburg | 2010-09-21 13:55:27 +0200 (Tue, 21 Sep 2010) | 3 lines
Add missing word.
........
Marc-André Lemburg [Tue, 21 Sep 2010 11:40:14 +0000 (11:40 +0000)]
Merged revisions 84938 via svnmerge from
svn+pythonssh://pythondev@svn.python.org/python/branches/py3k
........
r84938 | marc-andre.lemburg | 2010-09-21 13:37:43 +0200 (Tue, 21 Sep 2010) | 5 lines
Add OpenSSL license to the Python license documenation page.
See #9119.
........
Senthil Kumaran [Tue, 21 Sep 2010 02:10:45 +0000 (02:10 +0000)]
Merged revisions 84933 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84933 | senthil.kumaran | 2010-09-21 07:27:43 +0530 (Tue, 21 Sep 2010) | 3 lines
Document HTTPReponse.fileno() method
........
Senthil Kumaran [Tue, 21 Sep 2010 01:38:15 +0000 (01:38 +0000)]
Fix Issue1327971: HTTPResponse should expose a proper fileno attribute
Antoine Pitrou [Mon, 20 Sep 2010 11:20:44 +0000 (11:20 +0000)]
Merged revisions 84909-84913 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84909 | antoine.pitrou | 2010-09-20 00:46:05 +0200 (lun., 20 sept. 2010) | 3 lines
Try to fix test_subprocess on "x86 debian parallel 3.x" buildbot
........
r84910 | antoine.pitrou | 2010-09-20 01:06:53 +0200 (lun., 20 sept. 2010) | 3 lines
Try to make signal-sending tests in test_subprocess more robust on slow machines
........
r84911 | antoine.pitrou | 2010-09-20 01:28:30 +0200 (lun., 20 sept. 2010) | 3 lines
Make error more explicit in test_finalize_with_trace
........
r84912 | antoine.pitrou | 2010-09-20 02:12:19 +0200 (lun., 20 sept. 2010) | 3 lines
Try to fix buildbot failure (#9902)
........
r84913 | antoine.pitrou | 2010-09-20 03:33:21 +0200 (lun., 20 sept. 2010) | 3 lines
Try a more robust implementation of _kill_process
........
Hirokazu Yamamoto [Sun, 19 Sep 2010 10:00:19 +0000 (10:00 +0000)]
Recorded merge of revisions 84902 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84902 | hirokazu.yamamoto | 2010-09-19 18:24:20 +0900 | 1 line
Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
........
Hirokazu Yamamoto [Sun, 19 Sep 2010 09:10:40 +0000 (09:10 +0000)]
Merged revisions 84857,84870,84875 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84857 | hirokazu.yamamoto | 2010-09-17 17:53:31 +0900 | 1 line
Let's see if tcl/tk test runs on windows buildbot with this fix.
........
r84870 | hirokazu.yamamoto | 2010-09-18 09:31:44 +0900 | 3 lines
regrtest.py now runs python in build/test_python_xxx. (deeper than here)
So failed to load tcl/tk dll because $(dist)/tcltk/bin was set to PATH as
relative path. (Windows)
........
r84875 | hirokazu.yamamoto | 2010-09-18 13:02:52 +0900 | 1 line
Applied r84870 to older compilers.
........
Hirokazu Yamamoto [Sun, 19 Sep 2010 08:51:41 +0000 (08:51 +0000)]
Set svn:ignore to folders.
Benjamin Peterson [Sun, 19 Sep 2010 04:26:39 +0000 (04:26 +0000)]
Merged revisions 84892 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84892 | benjamin.peterson | 2010-09-18 22:54:31 -0500 (Sat, 18 Sep 2010) | 1 line
set svn:eol-style on tracedmodules
........
Senthil Kumaran [Sun, 19 Sep 2010 03:12:28 +0000 (03:12 +0000)]
Merged revisions 84889 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84889 | senthil.kumaran | 2010-09-19 08:39:54 +0530 (Sun, 19 Sep 2010) | 3 lines
Update the test_distutils mode test to test with umask value properly.
........
Antoine Pitrou [Sat, 18 Sep 2010 22:42:30 +0000 (22:42 +0000)]
Merged revisions 84883 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84883 | antoine.pitrou | 2010-09-19 00:38:48 +0200 (dim., 19 sept. 2010) | 3 lines
Issue #9895: speed up test_subprocess
........
Hirokazu Yamamoto [Sat, 18 Sep 2010 22:33:33 +0000 (22:33 +0000)]
Merged revisions 84851 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84851 | hirokazu.yamamoto | 2010-09-17 02:50:57 +0900 | 3 lines
Issue #9810: Compile bzip2 source files in python's project file
directly. It used to be built with bzip2's makefile.
........
Antoine Pitrou [Sat, 18 Sep 2010 18:15:33 +0000 (18:15 +0000)]
Merged revisions 84878 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84878 | antoine.pitrou | 2010-09-18 19:56:02 +0200 (sam., 18 sept. 2010) | 5 lines
Issue #9894: Do not hardcode ENOENT in test_subprocess.
(GNU/Hurd is not dead)
........
Hirokazu Yamamoto [Sat, 18 Sep 2010 05:40:44 +0000 (05:40 +0000)]
Added missing import.
Senthil Kumaran [Sat, 18 Sep 2010 02:58:49 +0000 (02:58 +0000)]
Merged revisions 84871 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84871 | senthil.kumaran | 2010-09-18 08:25:03 +0530 (Sat, 18 Sep 2010) | 3 lines
Skip the distutils mode test on Windows OS.
........
Victor Stinner [Fri, 17 Sep 2010 23:35:50 +0000 (23:35 +0000)]
Merged revisions 84866 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84866 | victor.stinner | 2010-09-18 01:34:26 +0200 (sam., 18 sept. 2010) | 4 lines
Issue #767645: Set os.path.supports_unicode_filenames to True in posixpath
Previous commit changed macpath but macpath is not used anymore as os.path
........
Senthil Kumaran [Fri, 17 Sep 2010 16:40:01 +0000 (16:40 +0000)]
Merged revisions 84861 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84861 | senthil.kumaran | 2010-09-17 22:05:37 +0530 (Fri, 17 Sep 2010) | 3 lines
Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameter
........
Hirokazu Yamamoto [Fri, 17 Sep 2010 14:13:35 +0000 (14:13 +0000)]
Blocked revisions 84643-84645,84741 via svnmerge
........
r84643 | hirokazu.yamamoto | 2010-09-09 15:08:36 +0900 | 4 lines
Updated VC6 files.
* pythoncore.dsp: updated project file
* readme.txt: removed dead link
* tcl852.patch: fixed patch. it was doubled.
........
r84644 | hirokazu.yamamoto | 2010-09-09 15:14:23 +0900 | 1 line
Updated VS7.1 project file. (I cannot test this file because I don't have VS7.1)
........
r84645 | hirokazu.yamamoto | 2010-09-09 15:24:43 +0900 | 5 lines
PCBuild cosmetic fixes.
* pythoncore.vcproj: Fixed indentation
* _multiprocessing.vcproj: Converted ProjectGUID to uppercase. Otherwise,
VS8 _multiprocessing.vcproj created by vs9to8.py was modified every time
loads it in VS8 IDE.
........
r84741 | hirokazu.yamamoto | 2010-09-13 01:06:18 +0900 | 2 lines
Fixed refcount bug. I placed Py_INCREF in create_comerror() for compatibility
with Python2.7.
........
Vinay Sajip [Fri, 17 Sep 2010 12:45:26 +0000 (12:45 +0000)]
Improved Filter documentation.
Vinay Sajip [Fri, 17 Sep 2010 10:09:04 +0000 (10:09 +0000)]
Improved basicConfig and custom level documentation.
Ronald Oussoren [Thu, 16 Sep 2010 11:35:07 +0000 (11:35 +0000)]
Merged revisions 84535 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84535 | ronald.oussoren | 2010-09-05 20:25:59 +0200 (Sun, 05 Sep 2010) | 2 lines
Fix for issue9662, patch by Łukasz Langa in issue5504.
........
Matthias Klose [Wed, 15 Sep 2010 13:01:19 +0000 (13:01 +0000)]
Try harder on issue #7356: ctypes.util: Make parsing of ldconfig output
independent of the locale. Set LC_ALL=C too.
Antoine Pitrou [Wed, 15 Sep 2010 11:25:22 +0000 (11:25 +0000)]
Blocked revisions 84827-84829 via svnmerge
........
r84827 | antoine.pitrou | 2010-09-15 11:58:26 +0200 (mer., 15 sept. 2010) | 3 lines
Add a glossary entry for file objects.
........
r84828 | antoine.pitrou | 2010-09-15 12:08:31 +0200 (mer., 15 sept. 2010) | 3 lines
Update file-related information in the FAQ.
........
r84829 | antoine.pitrou | 2010-09-15 13:11:28 +0200 (mer., 15 sept. 2010) | 3 lines
Add cross-references to the glossary entry for file objects.
........
Antoine Pitrou [Wed, 15 Sep 2010 11:14:58 +0000 (11:14 +0000)]
Blocked revisions 84825-84826,84830 via svnmerge
........
r84825 | antoine.pitrou | 2010-09-15 10:39:25 +0200 (mer., 15 sept. 2010) | 3 lines
Add a comment explaining why SocketIO is needed
........
r84826 | antoine.pitrou | 2010-09-15 11:32:45 +0200 (mer., 15 sept. 2010) | 3 lines
Improve docs for socket.makefile() and SocketIO
........
r84830 | antoine.pitrou | 2010-09-15 13:12:57 +0200 (mer., 15 sept. 2010) | 3 lines
Reverted unwanted change in r84826
........
Antoine Pitrou [Tue, 14 Sep 2010 18:48:19 +0000 (18:48 +0000)]
Merged revisions 84814 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84814 | antoine.pitrou | 2010-09-14 20:37:24 +0200 (mar., 14 sept. 2010) | 4 lines
Issue #9854: The default read() implementation in io.RawIOBase now
handles non-blocking readinto() returning None correctly.
........
Daniel Stutzbach [Tue, 14 Sep 2010 16:10:22 +0000 (16:10 +0000)]
Merged revisions 84810 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84810 | daniel.stutzbach | 2010-09-14 11:02:01 -0500 (Tue, 14 Sep 2010) | 1 line
Remove pointers to a FAQ entry that no longer exists. Incorporate some text from the old FAQ into the docs
........
Antoine Pitrou [Tue, 14 Sep 2010 14:44:56 +0000 (14:44 +0000)]
Blocked revisions 84807 via svnmerge
........
r84807 | antoine.pitrou | 2010-09-14 16:43:44 +0200 (mar., 14 sept. 2010) | 4 lines
Issue #9853: Fix the signature of SSLSocket.recvfrom() and
SSLSocket.sendto() to match the corresponding socket methods.
........
Antoine Pitrou [Tue, 14 Sep 2010 14:37:18 +0000 (14:37 +0000)]
Issue #9729: Fix the signature of SSLSocket.recvfrom() and
SSLSocket.sendto() to match the corresponding socket methods. Also,
fix various SSLSocket methods to raise socket.error rather than an
unhelpful TypeError when called on an unconnected socket. Original patch
by Andrew Bennetts.
NOTE: obviously, these methods are untested and unused in the real world...
Alexander Belopolsky [Tue, 14 Sep 2010 14:24:58 +0000 (14:24 +0000)]
Merged revisions 84803 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84803 | alexander.belopolsky | 2010-09-14 10:12:19 -0400 (Tue, 14 Sep 2010) | 1 line
Issue 9315: Added test/tracedmodules to LIBSUBDIRS
........
Eric Smith [Tue, 14 Sep 2010 13:03:57 +0000 (13:03 +0000)]
Blocked revisions 84790 via svnmerge
........
r84790 | eric.smith | 2010-09-13 16:48:43 -0400 (Mon, 13 Sep 2010) | 8 lines
Issue 7994: Make object.__format__() raise a PendingDeprecationWarning
if the format string is not empty. Manually merge r79596 and r84772
from 2.x.
Also, apparently test_format() from test_builtin never made it into
3.x. I've added it as well. It tests the basic format()
infrastructure.
........
Antoine Pitrou [Tue, 14 Sep 2010 12:54:08 +0000 (12:54 +0000)]
Some tests didn't get executed (because of the merge in r83728)
Raymond Hettinger [Mon, 13 Sep 2010 22:14:36 +0000 (22:14 +0000)]
Issue 9826: OrderedDict.__repr__ did not play well with self-referencing dicts.
Victor Stinner [Mon, 13 Sep 2010 20:31:34 +0000 (20:31 +0000)]
Merged revisions 84701,84784 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84701 | victor.stinner | 2010-09-11 02:22:12 +0200 (sam., 11 sept. 2010) | 5 lines
Issue #767645: fix os.path.supports_unicode_filenames definition
os.listdir(str) always returns unicode and it can return non-ascii filenames
even if supports_unicode_filenames is False.
........
r84784 | victor.stinner | 2010-09-13 21:41:36 +0200 (lun., 13 sept. 2010) | 2 lines
Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
(macpath module).
........
Alexander Belopolsky [Mon, 13 Sep 2010 18:16:55 +0000 (18:16 +0000)]
Removed debugging setting
Florent Xicluna [Mon, 13 Sep 2010 17:36:36 +0000 (17:36 +0000)]
Merged revisions 83524,84776 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r83524 | georg.brandl | 2010-08-02 14:20:23 +0200 (lun., 02 août 2010) | 1 line
#9428: fix running scripts from profile/cProfile with their own name and the right namespace. Same fix as for trace.py in #
1690103 .
........
r84776 | florent.xicluna | 2010-09-13 18:35:02 +0200 (lun., 13 sept. 2010) | 1 line
Make test.regrtest.__file__ absolute, this was not always the case when running profile or trace, for example. (issue #9323)
........
Florent Xicluna [Mon, 13 Sep 2010 17:29:11 +0000 (17:29 +0000)]
Unblocked revisions 83524 via svnmerge
........
r83524 | georg.brandl | 2010-08-02 14:20:23 +0200 (lun., 02 août 2010) | 1 line
#9428: fix running scripts from profile/cProfile with their own name and the right namespace. Same fix as for trace.py in #
1690103 .
........
Alexander Belopolsky [Mon, 13 Sep 2010 16:45:02 +0000 (16:45 +0000)]
Issue #9315: Fix for the trace module to record correct class name
when tracing methods. Unit tests. Patch by Eli Bendersky.
Florent Xicluna [Mon, 13 Sep 2010 08:53:00 +0000 (08:53 +0000)]
Strengthen test_unicode with explicit type checking for assertEqual tests.
Florent Xicluna [Mon, 13 Sep 2010 08:21:43 +0000 (08:21 +0000)]
Check PendingDeprecationWarning after issue #7994.
Florent Xicluna [Mon, 13 Sep 2010 08:20:19 +0000 (08:20 +0000)]
Silence warning about 1/0
Hirokazu Yamamoto [Mon, 13 Sep 2010 08:14:41 +0000 (08:14 +0000)]
Merged revisions 84765 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84765 | hirokazu.yamamoto | 2010-09-13 16:18:30 +0900 | 2 lines
get_build_version() is needed even where sys.platform != "win32".
Try to fix buildbot error in other way.
........
Florent Xicluna [Mon, 13 Sep 2010 07:50:43 +0000 (07:50 +0000)]
Blocked revisions 84081-84082,84363,84467-84469,84485 via svnmerge
........
r84081 | florent.xicluna | 2010-08-15 22:16:27 +0200 (dim., 15 août 2010) | 1 line
Replace the deprecated ConfigParser.readfp() method, and fix the incomplete merge in r82293.
........
r84082 | florent.xicluna | 2010-08-15 22:21:26 +0200 (dim., 15 août 2010) | 1 line
Replace readfp() with read_file() in configparser documentation.
........
r84363 | florent.xicluna | 2010-08-30 16:05:50 +0200 (lun., 30 août 2010) | 1 line
remove pointless coding cookies
........
r84467 | florent.xicluna | 2010-09-03 21:52:03 +0200 (ven., 03 sept. 2010) | 1 line
Use a context manager for some file objects.
........
r84468 | florent.xicluna | 2010-09-03 21:54:02 +0200 (ven., 03 sept. 2010) | 1 line
Remove unused import, fix typo and rewrap docstrings.
........
r84469 | florent.xicluna | 2010-09-03 21:55:26 +0200 (ven., 03 sept. 2010) | 1 line
Remove redundant context manager.
........
r84485 | florent.xicluna | 2010-09-04 01:47:32 +0200 (sam., 04 sept. 2010) | 2 lines
Welcome to the UTF-8 world.
........
Florent Xicluna [Mon, 13 Sep 2010 07:46:37 +0000 (07:46 +0000)]
Merged revisions 84470-84471,84566-84567,84759 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84470 | florent.xicluna | 2010-09-03 22:00:37 +0200 (ven., 03 sept. 2010) | 1 line
Strengthen BytesWarning tests.
........
r84471 | florent.xicluna | 2010-09-03 22:23:40 +0200 (ven., 03 sept. 2010) | 1 line
Typo
........
r84566 | florent.xicluna | 2010-09-06 22:27:15 +0200 (lun., 06 sept. 2010) | 1 line
typo
........
r84567 | florent.xicluna | 2010-09-06 22:27:55 +0200 (lun., 06 sept. 2010) | 1 line
typo
........
r84759 | florent.xicluna | 2010-09-13 04:28:18 +0200 (lun., 13 sept. 2010) | 1 line
Reenable test_ucs4 and remove some duplicated lines.
........
Hirokazu Yamamoto [Mon, 13 Sep 2010 06:36:09 +0000 (06:36 +0000)]
Merged revisions 84753,84760 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84753 | hirokazu.yamamoto | 2010-09-13 07:55:40 +0900 | 1 line
Issue #9313: Skips test_remove_visual_c_ref on old MSVC.
........
r84760 | hirokazu.yamamoto | 2010-09-13 14:36:21 +0900 | 1 line
Issue #9313: Use unittest.skipUnless to skip old MSVC.
........
Benjamin Peterson [Mon, 13 Sep 2010 01:48:02 +0000 (01:48 +0000)]
Merged revisions 84754 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84754 | benjamin.peterson | 2010-09-12 20:25:38 -0500 (Sun, 12 Sep 2010) | 1 line
remove duplicate statement
........
Matthias Klose [Sun, 12 Sep 2010 16:51:29 +0000 (16:51 +0000)]
Merged revisions 84743 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84743 | matthias.klose | 2010-09-12 18:31:58 +0200 (So, 12 Sep 2010) | 3 lines
- Issue #9817: Add expat COPYING file; add expat, libffi and expat licenses
to Doc/license.rst.
........
Antoine Pitrou [Sun, 12 Sep 2010 14:57:22 +0000 (14:57 +0000)]
Add Modules/ld_so_aix to svn:ignore
Antoine Pitrou [Sun, 12 Sep 2010 14:56:27 +0000 (14:56 +0000)]
Merged revisions 84737 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84737 | antoine.pitrou | 2010-09-12 16:51:20 +0200 (dim., 12 sept. 2010) | 4 lines
Issue #9837: The read() method of ZipExtFile objects (as returned by
ZipFile.open()) could return more bytes than requested.
........
Raymond Hettinger [Sun, 12 Sep 2010 02:11:45 +0000 (02:11 +0000)]
Issue #9825: Remove __del__() from OrderedDict.
R. David Murray [Sat, 11 Sep 2010 19:15:40 +0000 (19:15 +0000)]
Fix typo in previous doc commit.