Commit graph

41762 commits

Author SHA1 Message Date
Senthil Kumaran
20d114cad2 Fix for issue5040. Adding test for Content-Length 2009-04-01 20:26:33 +00:00
Jack Diederich
2ecd3c36b5 bounds check arguments to mmap.move(). All of them. Really.
fixes crasher on OS X 10.5
2009-04-01 20:26:13 +00:00
Brett Cannon
ce3d221447 test_warnings ironically had a single test that was not protecting the warnings
filter and was resetting it.
2009-04-01 20:25:48 +00:00
Brett Cannon
2da4d628a5 test_logging was blindly clearing the warnings filter. This caused
PendingDeprecationWarnings to be spewed all over by unittest.failIf*(). Fix
moves over to using warnings.catch_warning to protect the warnings filter.
2009-04-01 19:57:10 +00:00
Raymond Hettinger
66c4a6b51c Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. 2009-04-01 18:50:56 +00:00
Michael Foord
449b7d95d4 Adding Wing project file 2009-04-01 18:25:38 +00:00
Brett Cannon
15ba4dae5a _warnings was importing itself to get an attribute. That's bad if warnings gets
called in a thread that was spawned by an import itself.

Last part to close #1665206.
2009-04-01 18:03:59 +00:00
Brett Cannon
24565d296c Paul Kippes was given commit privileges to work on 3to2. 2009-04-01 17:52:13 +00:00
Georg Brandl
3ade7612d8 #5655: fix docstring oversight. 2009-04-01 17:46:01 +00:00
Brett Cannon
d5cc025e1c Ron DuPlain was given commit privileges at PyCon 2009 to work on 3to2. 2009-04-01 17:07:16 +00:00
Jesse Noller
b12e79da1b Issue 3270: document Listener address restrictions on windows 2009-04-01 16:42:19 +00:00
Kristján Valur Jónsson
feab33418d http://bugs.python.org/issue5623
Dynamically discoverd the size of the ioinfo struct used by the crt for its file descriptors.  This should work across all flavors of the CRT.  Thanks to Amaury Forgeot d'Arc
Needs porting to 3.1
2009-04-01 16:08:34 +00:00
Brett Cannon
ad078a0d7a The cgitb module had imports in its functions. This can cause deadlock with the
import lock if called from within a thread that was triggered by an import.

Partially fixes issue #1665206.
2009-04-01 16:00:34 +00:00
Georg Brandl
61fce3877c Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH. 2009-04-01 15:23:43 +00:00
Hirokazu Yamamoto
c53306c217 Fixed compile error on windows. 2009-04-01 15:13:52 +00:00
Georg Brandl
6f0e8353af Add Maksim, who worked on several issues at the sprint. 2009-04-01 14:02:27 +00:00
Georg Brandl
63959bb973 #5631: add upload to list of possible commands, which is presented in --help-commands. 2009-04-01 04:32:39 +00:00
Georg Brandl
e92d4b6f57 The SimpleXMLRPCServer's CGI handler now runs like a pony. 2009-04-01 04:21:14 +00:00
Jesse Noller
02cb0eb231 Fix multiprocessing.event to match the new threading.Event API 2009-04-01 03:45:50 +00:00
R. David Murray
a83da3507f Fix issue 2522. locale.format now checks that it is passed
exactly one pattern, which avoids mysterious errors where it
had seemed to fail to do localization.
2009-04-01 03:21:43 +00:00
Josiah Carlson
bb94d43dcd Fix for failing asyncore tests. 2009-04-01 01:28:11 +00:00
Georg Brandl
d8fb6ac9da Issue #5635: Fix running test_sys with tracing enabled. 2009-04-01 00:04:33 +00:00
Jack Diederich
d60c29ed8b #5228: add pickle support to functools.partial 2009-03-31 23:46:48 +00:00
R. David Murray
840ac926c5 Fix Windows test skip error revealed by buildbot. Also a comment spelling
correction in a previously fixed test.
2009-03-31 23:45:39 +00:00
Georg Brandl
a08867d8a1 Dont shout to users. 2009-03-31 23:01:27 +00:00
Tarek Ziadé
3bb5a9642b fixed the test for win32 CompileError 2009-03-31 22:47:01 +00:00
Tarek Ziadé
2bdefb3eee catching msvc9compiler error as well 2009-03-31 22:44:10 +00:00
Raymond Hettinger
6bc94cbbc8 Improve examples for collections.deque() 2009-03-31 22:43:03 +00:00
Georg Brandl
354e4cbb1c #5018: remove confusing paragraph. 2009-03-31 22:40:16 +00:00
Georg Brandl
44fb2a9314 #5617: add a handy function to print a unicode string to gdbinit. 2009-03-31 22:35:46 +00:00
Tarek Ziadé
9e47ce49a0 #5583 Added optional Extensions in Distutils 2009-03-31 22:27:23 +00:00
Jesse Noller
42f9b4e5b4 Issue 5619: Pass MS CRT debug flags into subprocesses 2009-03-31 22:20:35 +00:00
Georg Brandl
b7715865e7 #3427: document correct return type for urlopen().info(). 2009-03-31 22:18:19 +00:00
Georg Brandl
0c7b2c9c19 #1651995: fix _convert_ref for non-ASCII characters. 2009-03-31 22:11:53 +00:00
Georg Brandl
95fafec732 #5563: more documentation for bdist_msi. 2009-03-31 22:03:40 +00:00
Josiah Carlson
aba27dd6d9 Made handle_expt_event() be called last, so that we don't accidentally read
after closing the socket.
2009-03-31 21:49:36 +00:00
Georg Brandl
bcd64a3fc7 #1676135: remove trailing slashes from --prefix argument. 2009-03-31 21:45:18 +00:00
Georg Brandl
690362183a #1675026: add a note about a strange Windows problem, and remove notes about AtheOS. 2009-03-31 21:43:03 +00:00
Georg Brandl
9a744c1387 Remove warning about pending Win9x support removal. 2009-03-31 21:40:24 +00:00
Benjamin Peterson
d906ea62c8 fix Thread.ident when it is the main thread or a dummy thread #5632 2009-03-31 21:34:42 +00:00
Georg Brandl
a08e8dedc2 #5598: document DocFileSuite *args argument. 2009-03-31 21:15:33 +00:00
Benjamin Peterson
bd9dd31abd take the usual lock precautions around _active_limbo_lock 2009-03-31 21:06:30 +00:00
Georg Brandl
186188d89d #1530012: move TQS section before raw strings. 2009-03-31 20:56:32 +00:00
Tarek Ziadé
1a1158f955 making sdist and config test silents 2009-03-31 20:56:11 +00:00
Tarek Ziadé
899dd1221d added tests to the install_headers command 2009-03-31 20:55:21 +00:00
Tarek Ziadé
a961a0444d added test to the install_data command 2009-03-31 20:54:38 +00:00
Tarek Ziadé
e899b711df more tests for the upload command 2009-03-31 20:53:55 +00:00
Tarek Ziadé
ca2b8d283a more tests for the register command 2009-03-31 20:53:13 +00:00
Tarek Ziadé
023862890f added tests for the clean command 2009-03-31 20:50:59 +00:00
Tarek Ziadé
c7cd138bc2 using log.warn for sys.stderr 2009-03-31 20:48:31 +00:00