]>
granicus.if.org Git - python/log
Benjamin Peterson [Sun, 12 Jul 2009 23:58:08 +0000 (23:58 +0000)]
Blocked revisions 73991 via svnmerge
........
r73991 | benjamin.peterson | 2009-07-12 18:56:18 -0500 (Sun, 12 Jul 2009) | 1 line
change encoding to utf-8
........
Kristján Valur Jónsson [Sun, 12 Jul 2009 22:45:18 +0000 (22:45 +0000)]
merging revision 73986 from trunk:
http://bugs.python.org/issue6267
Add more tests for the xlmrpc.ServerProxy
Raymond Hettinger [Sun, 12 Jul 2009 20:49:21 +0000 (20:49 +0000)]
Document the thousands separator.
Benjamin Peterson [Sun, 12 Jul 2009 17:02:22 +0000 (17:02 +0000)]
Blocked revisions 73979 via svnmerge
........
r73979 | benjamin.peterson | 2009-07-12 11:56:54 -0500 (Sun, 12 Jul 2009) | 1 line
add versionadded
........
Amaury Forgeot d'Arc [Sun, 12 Jul 2009 16:43:19 +0000 (16:43 +0000)]
Merged revisions 73952 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
(Only docstrings were modified, won't backport to 3.1)
........
r73952 | amaury.forgeotdarc | 2009-07-11 16:33:51 +0200 (sam., 11 juil. 2009) | 4 lines
#2622 Import errors in email.message, from a py2app standalone application.
Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
........
Tarek Ziadé [Sun, 12 Jul 2009 08:27:26 +0000 (08:27 +0000)]
Fixed #6438: distutils.cygwinccompiler.get_versions was trying to use a re string pattern on a bytes
Kristján Valur Jónsson [Sat, 11 Jul 2009 21:57:16 +0000 (21:57 +0000)]
merging revision 73932 from trunk:
http://bugs.python.org/issue6460
Need to be careful with thread switching when testing the xmlrpc server. The server thread may not have updated stats when the client thread tests them.
Ezio Melotti [Sat, 11 Jul 2009 18:28:48 +0000 (18:28 +0000)]
Merged revisions 73931 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73931 | ezio.melotti | 2009-07-10 23:25:56 +0300 (Fri, 10 Jul 2009) | 1 line
more cleanups and if zlib -> skipUnless(zlib)
........
Tarek Ziadé [Sat, 11 Jul 2009 11:02:29 +0000 (11:02 +0000)]
Blocked revisions 73944 via svnmerge
........
r73944 | tarek.ziade | 2009-07-11 12:48:31 +0200 (Sat, 11 Jul 2009) | 1 line
cleaned up distutils.build_ext module
........
Tarek Ziadé [Sat, 11 Jul 2009 10:59:56 +0000 (10:59 +0000)]
Merged revisions 73946 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73946 | tarek.ziade | 2009-07-11 12:55:27 +0200 (Sat, 11 Jul 2009) | 1 line
fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit'
........
Georg Brandl [Sat, 11 Jul 2009 10:43:08 +0000 (10:43 +0000)]
#6421: The self argument of module-level PyCFunctions is now a reference to the module object.
Georg Brandl [Sat, 11 Jul 2009 10:39:23 +0000 (10:39 +0000)]
#6430: remove mention of "w" array typecode.
Georg Brandl [Sat, 11 Jul 2009 10:39:00 +0000 (10:39 +0000)]
Merged revisions 73940 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73940 | georg.brandl | 2009-07-11 12:37:38 +0200 (Sa, 11 Jul 2009) | 1 line
#6430: add note about size of "u" type.
........
Georg Brandl [Sat, 11 Jul 2009 10:08:49 +0000 (10:08 +0000)]
Revert r73807, which removed code to be able to build _dbm with bsddb.
Amaury Forgeot d'Arc [Sat, 11 Jul 2009 09:35:13 +0000 (09:35 +0000)]
#6358: Merge r73933: Add basic tests for the return value of os.popen().close().
And fix the implementation to make these tests pass with py3k
Tarek Ziadé [Fri, 10 Jul 2009 10:03:20 +0000 (10:03 +0000)]
Merged revisions 73925-73926 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73925 | tarek.ziade | 2009-07-10 11:57:15 +0200 (Fri, 10 Jul 2009) | 1 line
Added test coverage for distutils.command.build
........
r73926 | tarek.ziade | 2009-07-10 12:00:21 +0200 (Fri, 10 Jul 2009) | 1 line
cleaned up distutils.command.build
........
Tarek Ziadé [Fri, 10 Jul 2009 09:14:31 +0000 (09:14 +0000)]
Merged revisions 73921 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73921 | tarek.ziade | 2009-07-10 11:10:33 +0200 (Fri, 10 Jul 2009) | 1 line
Fixed #6455 (the test shall use pyd files under win32, rather than so files)
........
Amaury Forgeot d'Arc [Thu, 9 Jul 2009 23:07:52 +0000 (23:07 +0000)]
NEWS entry for r73918.
Amaury Forgeot d'Arc [Thu, 9 Jul 2009 23:00:40 +0000 (23:00 +0000)]
#6323: pdb doesn't deal well with SyntaxErrors.
It seems necessary to keep two layers of 'exec' (one in Bdb.run, one in Pdb._runscript);
this allows the tracing function to be active when the inner 'exec' runs
and tries to compile the real code.
This partially revert r58127, the net effet of the two changes is to replace
"exec('%s')" with "exec(%r)".
Amaury Forgeot d'Arc [Thu, 9 Jul 2009 22:44:11 +0000 (22:44 +0000)]
Merged revisions 73916 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73916 | amaury.forgeotdarc | 2009-07-10 00:37:22 +0200 (ven., 10 juil. 2009) | 5 lines
#6416: Fix compilation of the select module on Windows, as well as test_subprocess:
PIPE_BUF is not defined on Windows, and probably has no meaning there.
Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
........
R. David Murray [Thu, 9 Jul 2009 20:12:31 +0000 (20:12 +0000)]
Merged revisions 73907-73908 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines
Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
if the test gives useful failure info on Solaris buildbot.
........
r73908 | r.david.murray | 2009-07-09 14:41:03 -0400 (Thu, 09 Jul 2009) | 6 lines
Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames
cleanup. If this fix works, it means that Solaris is unique among
our platforms in what happens when shutil.rmtree is called on the
current working directory (ie: it doesn't work on Solaris, but
it does everywhere else).
........
R. David Murray [Thu, 9 Jul 2009 19:51:32 +0000 (19:51 +0000)]
Unblocked revisions 73907 via svnmerge
........
r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines
Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
if the test gives useful failure info on Solaris buildbot.
........
R. David Murray [Thu, 9 Jul 2009 19:47:26 +0000 (19:47 +0000)]
Blocked revisions 73907 via svnmerge
........
r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines
Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
if the test gives useful failure info on Solaris buildbot.
........
Tarek Ziadé [Thu, 9 Jul 2009 07:46:10 +0000 (07:46 +0000)]
Merged revisions 73901 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73901 | tarek.ziade | 2009-07-09 09:42:42 +0200 (Thu, 09 Jul 2009) | 1 line
PendingDeprecationWarning -> DeprecationWarning in build_ext
........
Tarek Ziadé [Wed, 8 Jul 2009 22:42:43 +0000 (22:42 +0000)]
Merged revisions 73895 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73895 | tarek.ziade | 2009-07-09 00:40:51 +0200 (Thu, 09 Jul 2009) | 1 line
Sets the compiler attribute to keep the old behavior for third-party packages.
........
Ezio Melotti [Wed, 8 Jul 2009 22:24:06 +0000 (22:24 +0000)]
Merged revisions 73841 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73841 | ezio.melotti | 2009-07-04 17:58:27 +0300 (Sat, 04 Jul 2009) | 1 line
if zlib -> skipUnless(zlib) and minor cleanups
........
Mark Dickinson [Tue, 7 Jul 2009 15:09:33 +0000 (15:09 +0000)]
Blocked revisions 73891 via svnmerge
........
r73891 | mark.dickinson | 2009-07-07 16:08:28 +0100 (Tue, 07 Jul 2009) | 3 lines
Issue #1523: Remove deprecated overflow masking in struct module, and
make sure that out-of-range values consistently raise struct.error.
........
Mark Dickinson [Tue, 7 Jul 2009 14:18:33 +0000 (14:18 +0000)]
Blocked revisions 73888 via svnmerge
........
r73888 | mark.dickinson | 2009-07-07 15:15:45 +0100 (Tue, 07 Jul 2009) | 3 lines
Expand test coverage for struct.pack with native integer packing;
reorganize the test_struct module to remove duplicated code and tests.
........
Mark Dickinson [Tue, 7 Jul 2009 11:09:38 +0000 (11:09 +0000)]
Blocked revisions 73884 via svnmerge
........
r73884 | mark.dickinson | 2009-07-07 12:08:23 +0100 (Tue, 07 Jul 2009) | 1 line
Add skipping to struct test that only applies when overflow masking is in effect
........
Mark Dickinson [Tue, 7 Jul 2009 10:21:03 +0000 (10:21 +0000)]
Merged revisions 73880 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73880 | mark.dickinson | 2009-07-07 11:18:22 +0100 (Tue, 07 Jul 2009) | 1 line
Typo in error message
........
Kristján Valur Jónsson [Tue, 7 Jul 2009 09:09:10 +0000 (09:09 +0000)]
http://bugs.python.org/issue6382
added the shutdown_request() which can perform shutdown before calling close. This is needed for the ForkingMixIn because different close semantics are required for child and parent process. shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request(). Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
Amaury Forgeot d'Arc [Tue, 7 Jul 2009 06:51:26 +0000 (06:51 +0000)]
Merged revisions 73873 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73873 | amaury.forgeotdarc | 2009-07-07 08:49:41 +0200 (mar., 07 juil. 2009) | 2 lines
#6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD.
........
Gregory P. Smith [Tue, 7 Jul 2009 05:06:04 +0000 (05:06 +0000)]
Add a unittest for r73566.
Amaury Forgeot d'Arc [Tue, 7 Jul 2009 00:43:08 +0000 (00:43 +0000)]
#6428: py3k requires that __bool__ return a bool (and not an int)
Fix the error message and the documentation.
Tarek Ziadé [Mon, 6 Jul 2009 13:52:17 +0000 (13:52 +0000)]
Merged revisions 73864 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73864 | tarek.ziade | 2009-07-06 14:50:46 +0200 (Mon, 06 Jul 2009) | 1 line
Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option)
........
Alexandre Vassalotti [Sun, 5 Jul 2009 19:57:00 +0000 (19:57 +0000)]
Add the fix for issue 4509 to the mapping methods.
Mark Dickinson [Sun, 5 Jul 2009 10:03:49 +0000 (10:03 +0000)]
Blocked revisions 73858 via svnmerge
........
r73858 | mark.dickinson | 2009-07-05 11:01:24 +0100 (Sun, 05 Jul 2009) | 3 lines
Issues #
1530559 , #
1741130 : Fix various inconsistencies in struct.pack
integer packing, and reenable some previously broken tests.
........
Alexandre Vassalotti [Sun, 5 Jul 2009 06:50:08 +0000 (06:50 +0000)]
Add NEWS entries for the changes I made recently.
Alexandre Vassalotti [Sun, 5 Jul 2009 06:42:44 +0000 (06:42 +0000)]
Issue 4005: Remove .sort() call on dict_keys object.
This caused pydoc to fail when there was a zip file in sys.path.
Patch contributed by Amaury Forgeot d'Arc.
Alexandre Vassalotti [Sun, 5 Jul 2009 06:34:48 +0000 (06:34 +0000)]
Blocked revisions 73854 via svnmerge
........
r73854 | alexandre.vassalotti | 2009-07-05 02:33:41 -0400 (Sun, 05 Jul 2009) | 2 lines
Backport test cases added in r73852.
........
Alexandre Vassalotti [Sun, 5 Jul 2009 06:31:55 +0000 (06:31 +0000)]
Blocked revisions 73846-73847 via svnmerge
........
r73846 | alexandre.vassalotti | 2009-07-05 00:22:40 -0400 (Sun, 05 Jul 2009) | 6 lines
Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and
operator.sequenceIncludes.
Patch contributed by Jeff Balogh (and updated slightly by me).
........
r73847 | alexandre.vassalotti | 2009-07-05 00:25:46 -0400 (Sun, 05 Jul 2009) | 2 lines
Fix bad variable name in r73846.
........
Alexandre Vassalotti [Sun, 5 Jul 2009 06:25:14 +0000 (06:25 +0000)]
Fix array.extend and array.__iadd__ to handle the case where an array
is extended with itself.
This bug is specific the py3k version of arraymodule.c
Alexandre Vassalotti [Sun, 5 Jul 2009 05:47:28 +0000 (05:47 +0000)]
Add more test cases to BaseTest.test_memoryview_no_resize.
Alexandre Vassalotti [Sun, 5 Jul 2009 05:38:18 +0000 (05:38 +0000)]
Issue 4509: Do not modify an array if we know the change would result
in a failure due to exported buffers.
Kristján Valur Jónsson [Sat, 4 Jul 2009 15:18:00 +0000 (15:18 +0000)]
http://bugs.python.org/issue6381
merging revision 73819 from trunk
Kristján Valur Jónsson [Sat, 4 Jul 2009 15:16:38 +0000 (15:16 +0000)]
Revert last change, which was incorrect.
Kristján Valur Jónsson [Sat, 4 Jul 2009 15:09:25 +0000 (15:09 +0000)]
http://bugs.python.org/issue6381
merging revision 73819 from trunk
Gregory P. Smith [Sat, 4 Jul 2009 08:32:15 +0000 (08:32 +0000)]
change deprecated unittest method calls into their proper names.
Tarek Ziadé [Sat, 4 Jul 2009 03:00:50 +0000 (03:00 +0000)]
Merged revisions 73834 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73834 | tarek.ziade | 2009-07-04 04:59:19 +0200 (Sat, 04 Jul 2009) | 1 line
using print statements when used for user interaction
........
Gregory P. Smith [Sat, 4 Jul 2009 02:46:54 +0000 (02:46 +0000)]
Merged revisions 73825-73826 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73825 | gregory.p.smith | 2009-07-03 18:49:29 -0700 (Fri, 03 Jul 2009) | 9 lines
Use select.poll() in subprocess, when available, rather than select() so that
it does not fail when file descriptors are large. Fixes issue3392.
Patch largely contributed by Frank Chu (fpmc) with some improvements by me.
See http://bugs.python.org/issue3392.
........
r73826 | gregory.p.smith | 2009-07-03 18:55:11 -0700 (Fri, 03 Jul 2009) | 2 lines
news entry for r73825
........
Candidate for backporting to release31-maint as it is a bug fix and changes no
public API.
Gregory P. Smith [Sat, 4 Jul 2009 02:28:47 +0000 (02:28 +0000)]
Merged revisions 73818 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73818 | gregory.p.smith | 2009-07-03 13:48:31 -0700 (Fri, 03 Jul 2009) | 2 lines
Adds the select.PIPE_BUF attribute to expose the system constant.
........
Tarek Ziadé [Sat, 4 Jul 2009 02:04:21 +0000 (02:04 +0000)]
Merged revisions 73827 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73827 | tarek.ziade | 2009-07-04 04:02:41 +0200 (Sat, 04 Jul 2009) | 1 line
Fixed #6413: fixed log level in distutils.dist.announce
........
Ezio Melotti [Sat, 4 Jul 2009 01:14:30 +0000 (01:14 +0000)]
#6398 typo: versio. -> version.
Kristján Valur Jónsson [Fri, 3 Jul 2009 23:23:50 +0000 (23:23 +0000)]
http://bugs.python.org/issue6267
Incorrect exception handling for xmlrpclient retry
Tarek Ziadé [Fri, 3 Jul 2009 19:22:23 +0000 (19:22 +0000)]
Merged revisions 73814-73815 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73814 | tarek.ziade | 2009-07-03 21:01:12 +0200 (Fri, 03 Jul 2009) | 1 line
basic tests to raise distutils.file_util coverage
........
r73815 | tarek.ziade | 2009-07-03 21:14:49 +0200 (Fri, 03 Jul 2009) | 1 line
cleaned distutils.file_util
........
Benjamin Peterson [Fri, 3 Jul 2009 13:30:25 +0000 (13:30 +0000)]
remove duplicate declartions #6405
Benjamin Peterson [Fri, 3 Jul 2009 13:22:00 +0000 (13:22 +0000)]
rip out bsddb support code
Benjamin Peterson [Fri, 3 Jul 2009 13:18:18 +0000 (13:18 +0000)]
xrange -> range
Tarek Ziadé [Fri, 3 Jul 2009 09:05:30 +0000 (09:05 +0000)]
Merged revisions 73801 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73801 | tarek.ziade | 2009-07-03 11:01:07 +0200 (Fri, 03 Jul 2009) | 1 line
cleaned up distutils.command.build_py
........
Tarek Ziadé [Fri, 3 Jul 2009 08:33:28 +0000 (08:33 +0000)]
Merged revisions 73790 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73790 | tarek.ziade | 2009-07-03 10:22:56 +0200 (Fri, 03 Jul 2009) | 1 line
Fixed #6403 : package path usage for build_ext
........
Amaury Forgeot d'Arc [Thu, 2 Jul 2009 23:08:45 +0000 (23:08 +0000)]
#4601: 'make install' did not set the permissions on library directories,
only root could start IDLE for example.
Beware that os.path.walk does not translate as is to os.walk!
the former uses a callback to call on each dir, the latter is a generator...
Benjamin Peterson [Thu, 2 Jul 2009 21:55:39 +0000 (21:55 +0000)]
Merged revisions 73781 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73781 | benjamin.peterson | 2009-07-02 16:38:36 -0500 (Thu, 02 Jul 2009) | 1 line
test that compile() accepts the future flag
........
Benjamin Peterson [Thu, 2 Jul 2009 21:54:36 +0000 (21:54 +0000)]
a little more fiddling to make flags like 2.x
Benjamin Peterson [Thu, 2 Jul 2009 21:44:01 +0000 (21:44 +0000)]
the old CO_FUTURE flags can't be commented out
Benjamin Peterson [Thu, 2 Jul 2009 18:25:26 +0000 (18:25 +0000)]
refactor logic a little when no sep or end is passed
Benjamin Peterson [Thu, 2 Jul 2009 18:18:56 +0000 (18:18 +0000)]
Blocked revisions 73776 via svnmerge
........
r73776 | benjamin.peterson | 2009-07-02 13:16:45 -0500 (Thu, 02 Jul 2009) | 1 line
when print() gets unicode arguments, sep and end should be unicode by default #4618
........
Jesus Cea [Thu, 2 Jul 2009 14:35:02 +0000 (14:35 +0000)]
Merged revisions 73767 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73767 | jesus.cea | 2009-07-02 16:30:18 +0200 (Thu, 02 Jul 2009) | 1 line
multiprocessing doesn't compile in Solaris because a typo
........
Tarek Ziadé [Thu, 2 Jul 2009 14:25:23 +0000 (14:25 +0000)]
Merged revisions 73762 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73762 | tarek.ziade | 2009-07-02 16:20:47 +0200 (Thu, 02 Jul 2009) | 1 line
pep8-fied and cleaned up distutils.util
........
Tarek Ziadé [Thu, 2 Jul 2009 13:02:21 +0000 (13:02 +0000)]
Merged revisions 73756-73757 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73756 | tarek.ziade | 2009-07-02 14:47:54 +0200 (Thu, 02 Jul 2009) | 1 line
raising bdist_dumb test coverage
........
r73757 | tarek.ziade | 2009-07-02 14:51:56 +0200 (Thu, 02 Jul 2009) | 1 line
cleaned up the bdist_dumb module
........
Benjamin Peterson [Wed, 1 Jul 2009 15:47:07 +0000 (15:47 +0000)]
Merged revisions 73744 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73744 | benjamin.peterson | 2009-07-01 08:34:35 -0500 (Wed, 01 Jul 2009) | 1 line
proxy the __exit__ call
........
Antoine Pitrou [Wed, 1 Jul 2009 14:53:06 +0000 (14:53 +0000)]
Issue #6369: Fix an RLE decompression bug in the binhex module.
Benjamin Peterson [Wed, 1 Jul 2009 13:47:12 +0000 (13:47 +0000)]
Blocked revisions 73638,73697 via svnmerge
........
r73638 | kristjan.jonsson | 2009-06-28 16:04:17 -0500 (Sun, 28 Jun 2009) | 2 lines
http://bugs.python.org/issue6267
Cumulative patch to http and xmlrpc
........
r73697 | raymond.hettinger | 2009-06-29 14:10:29 -0500 (Mon, 29 Jun 2009) | 1 line
Issue 6370: Performance issue with collections.Counter().
........
Kristján Valur Jónsson [Wed, 1 Jul 2009 10:01:31 +0000 (10:01 +0000)]
http://bugs.python.org/issue6267
porting revision 73638 to py3k
Benjamin Peterson [Wed, 1 Jul 2009 03:34:25 +0000 (03:34 +0000)]
remove cobject reference
R. David Murray [Wed, 1 Jul 2009 02:51:00 +0000 (02:51 +0000)]
Remove unused import for function that no longer exists.
Hirokazu Yamamoto [Wed, 1 Jul 2009 02:36:00 +0000 (02:36 +0000)]
Updated MSVC project files to follow PyCObject removal (r73729)
Hirokazu Yamamoto [Wed, 1 Jul 2009 02:24:13 +0000 (02:24 +0000)]
Added svn:ignore.
Benjamin Peterson [Wed, 1 Jul 2009 01:45:12 +0000 (01:45 +0000)]
remove comment about PyNumber_Int
Benjamin Peterson [Wed, 1 Jul 2009 01:39:51 +0000 (01:39 +0000)]
remove warnings supression
Benjamin Peterson [Wed, 1 Jul 2009 01:38:23 +0000 (01:38 +0000)]
remove nested from __all__
Raymond Hettinger [Wed, 1 Jul 2009 01:37:01 +0000 (01:37 +0000)]
Remove docs for string.maketrans().
Raymond Hettinger [Wed, 1 Jul 2009 01:32:12 +0000 (01:32 +0000)]
Removed contextlib.nested()
Benjamin Peterson [Wed, 1 Jul 2009 01:31:12 +0000 (01:31 +0000)]
remove reference to PyCObject
Benjamin Peterson [Wed, 1 Jul 2009 01:28:55 +0000 (01:28 +0000)]
remove PyCObject
Benjamin Peterson [Wed, 1 Jul 2009 01:06:56 +0000 (01:06 +0000)]
Merged revisions 73725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r73725 | benjamin.peterson | 2009-06-30 19:49:09 -0500 (Tue, 30 Jun 2009) | 21 lines
Merged revisions 73379,73388,73507,73722 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r73379 | benjamin.peterson | 2009-06-11 18:06:21 -0500 (Thu, 11 Jun 2009) | 1 line
use a real conditional expresion
........
r73388 | benjamin.peterson | 2009-06-12 09:44:29 -0500 (Fri, 12 Jun 2009) | 1 line
fix typo in last fix
........
r73507 | benjamin.peterson | 2009-06-22 13:32:04 -0500 (Mon, 22 Jun 2009) | 1 line
remove svn:executable property
........
r73722 | benjamin.peterson | 2009-06-30 19:44:30 -0500 (Tue, 30 Jun 2009) | 1 line
replace fail* with assert*
........
................
Amaury Forgeot d'Arc [Wed, 1 Jul 2009 00:48:39 +0000 (00:48 +0000)]
Fix exception name in NEWS, spotted by Neal Norwitz
Benjamin Peterson [Wed, 1 Jul 2009 00:45:43 +0000 (00:45 +0000)]
remove use of failIf
Benjamin Peterson [Wed, 1 Jul 2009 00:43:10 +0000 (00:43 +0000)]
Merged revisions 73720 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73720 | benjamin.peterson | 2009-06-30 19:36:41 -0500 (Tue, 30 Jun 2009) | 4 lines
fix a few cases where automated fail -> assert translation messed up
Thanks Joe Amenta
........
Benjamin Peterson [Tue, 30 Jun 2009 23:45:41 +0000 (23:45 +0000)]
test that depreacted methods give warnings
Benjamin Peterson [Tue, 30 Jun 2009 23:35:19 +0000 (23:35 +0000)]
Merged revisions 73717 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73717 | benjamin.peterson | 2009-06-30 18:30:12 -0500 (Tue, 30 Jun 2009) | 1 line
use assert* methods in test_unittest
........
Benjamin Peterson [Tue, 30 Jun 2009 23:09:03 +0000 (23:09 +0000)]
Blocked revisions 73714 via svnmerge
........
r73714 | benjamin.peterson | 2009-06-30 17:57:08 -0500 (Tue, 30 Jun 2009) | 1 line
convert usage of fail* to assert*
........
Benjamin Peterson [Tue, 30 Jun 2009 23:06:06 +0000 (23:06 +0000)]
convert old fail* assertions to assert*
Benjamin Peterson [Tue, 30 Jun 2009 22:27:25 +0000 (22:27 +0000)]
Merged revisions 73710 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73710 | benjamin.peterson | 2009-06-30 17:14:33 -0500 (Tue, 30 Jun 2009) | 1 line
provide a dummy __exit__ on windows
........
Mark Dickinson [Tue, 30 Jun 2009 15:45:17 +0000 (15:45 +0000)]
Merged revisions 73701 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73701 | mark.dickinson | 2009-06-30 16:32:30 +0100 (Tue, 30 Jun 2009) | 3 lines
Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build
failure on HP-UX 11.00.
........
Gregory P. Smith [Tue, 30 Jun 2009 05:33:50 +0000 (05:33 +0000)]
PendingDeprecationWarning -> DeprecationWarning. Both of these were
properly documented as being deprecated in 3.1.
Amaury Forgeot d'Arc [Mon, 29 Jun 2009 22:36:49 +0000 (22:36 +0000)]
#6373: SystemError in str.encode('latin1', 'surrogateescape')
if the string contains unpaired surrogates.
(In debug build, crash in assert())
This can happen with normal processing, if python starts with utf-8,
then calls sys.setfilesystemencoding('latin-1')
Raymond Hettinger [Mon, 29 Jun 2009 18:30:43 +0000 (18:30 +0000)]
Issue 6370: Performance issue with collections.Counter().
Tarek Ziadé [Mon, 29 Jun 2009 16:19:22 +0000 (16:19 +0000)]
Merged revisions 73688 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73688 | tarek.ziade | 2009-06-29 18:13:39 +0200 (Mon, 29 Jun 2009) | 1 line
Fixed 6365: wrong inplace location for build_ext if the extension had dots
........
Hirokazu Yamamoto [Mon, 29 Jun 2009 16:03:21 +0000 (16:03 +0000)]
Blocked revisions 73686 via svnmerge
........
r73686 | hirokazu.yamamoto | 2009-06-30 00:52:21 +0900 | 1 line
Issue #6368: Fixed unused variable warning on Unix.
........
Hirokazu Yamamoto [Mon, 29 Jun 2009 14:54:12 +0000 (14:54 +0000)]
Merged revisions 73677,73681 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73677 | hirokazu.yamamoto | 2009-06-29 22:25:16 +0900 | 2 lines
Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.
Reviewed by Amaury Forgeot d'Arc.
........
r73681 | hirokazu.yamamoto | 2009-06-29 23:29:31 +0900 | 1 line
Fixed NEWS.
........