]> granicus.if.org Git - python/log
python
16 years agoPyImport_AppendInittab() took a char * as a first argument even though that
Brett Cannon [Thu, 2 Apr 2009 03:17:39 +0000 (03:17 +0000)]
PyImport_AppendInittab() took a char * as a first argument even though that
string was stored beyond the life of the call. Changed the signature to be
const char * to help make this point.

Closes issue #1419652.

16 years agoFixing the issue4860. Escaping embedded '"' character in js_output() method of Morsel.
Senthil Kumaran [Thu, 2 Apr 2009 03:00:34 +0000 (03:00 +0000)]
Fixing the issue4860. Escaping embedded '"' character in js_output() method of Morsel.

16 years agofix error handling
Benjamin Peterson [Thu, 2 Apr 2009 02:52:46 +0000 (02:52 +0000)]
fix error handling

16 years agoIn PyErr_GivenExceptionMatches, temporarily bump the recursion
Georg Brandl [Thu, 2 Apr 2009 02:47:44 +0000 (02:47 +0000)]
In PyErr_GivenExceptionMatches, temporarily bump the recursion
limit, so that in the most common case PyObject_IsSubclass will
not raise a recursion error we have to ignore anyway.

16 years agoRemove port spec from run.py and fix bug where
Kurt B. Kaiser [Thu, 2 Apr 2009 02:44:54 +0000 (02:44 +0000)]
Remove port spec from run.py and fix bug where
subprocess fails to extract port from command line
when warnings are present.

16 years agoIssue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin...
Jesse Noller [Thu, 2 Apr 2009 02:32:55 +0000 (02:32 +0000)]
Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin Loewis

16 years agoFix test_doctest, missed two assignments to curframe.
Georg Brandl [Thu, 2 Apr 2009 02:00:01 +0000 (02:00 +0000)]
Fix test_doctest, missed two assignments to curframe.

16 years agohandle SEEK_ constants in test_io
Benjamin Peterson [Thu, 2 Apr 2009 01:03:17 +0000 (01:03 +0000)]
handle SEEK_ constants in test_io

16 years agothis should be :noindex:
Benjamin Peterson [Thu, 2 Apr 2009 00:12:47 +0000 (00:12 +0000)]
this should be :noindex:

16 years agofix markup
Benjamin Peterson [Thu, 2 Apr 2009 00:11:52 +0000 (00:11 +0000)]
fix markup

16 years agoissue5545: Switch to Autoconf for multiprocessing; special thanks to Martin Lowis...
Jesse Noller [Thu, 2 Apr 2009 00:03:28 +0000 (00:03 +0000)]
issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin Lowis for help

16 years agoTypo fix
Andrew M. Kuchling [Thu, 2 Apr 2009 00:02:14 +0000 (00:02 +0000)]
Typo fix

16 years agoCache the f_locals dict of the current frame, since every access to frame.f_locals...
Georg Brandl [Wed, 1 Apr 2009 23:32:17 +0000 (23:32 +0000)]
Cache the f_locals dict of the current frame, since every access to frame.f_locals overrides its contents with the real locals which undoes modifications made by the debugging user.

16 years agoremove double underscores
Benjamin Peterson [Wed, 1 Apr 2009 23:15:49 +0000 (23:15 +0000)]
remove double underscores

16 years agoAdd my initials to Misc/developers.txt. Names are now sorted by number of
Brett Cannon [Wed, 1 Apr 2009 23:01:12 +0000 (23:01 +0000)]
Add my initials to Misc/developers.txt. Names are now sorted by number of
characters in the person's name.

16 years agoIn Pdb, stop assigning values to __builtin__._ which interferes with the one commonly...
Georg Brandl [Wed, 1 Apr 2009 21:54:21 +0000 (21:54 +0000)]
In Pdb, stop assigning values to __builtin__._ which interferes with the one commonly installed by gettext.

16 years agoAdd tests checking the CSV module's ability to handle
R. David Murray [Wed, 1 Apr 2009 21:26:18 +0000 (21:26 +0000)]
Add tests checking the CSV module's ability to handle
embedded newlines in quoted field values.

16 years agoadd seek constants to __all__
Benjamin Peterson [Wed, 1 Apr 2009 21:12:54 +0000 (21:12 +0000)]
add seek constants to __all__

16 years agoRevert accidental checkin.
Georg Brandl [Wed, 1 Apr 2009 21:06:30 +0000 (21:06 +0000)]
Revert accidental checkin.

16 years agoAdd NEWS item.
Georg Brandl [Wed, 1 Apr 2009 21:05:44 +0000 (21:05 +0000)]
Add NEWS item.

16 years ago#4572: add SEEK_* values as constants in io.py.
Georg Brandl [Wed, 1 Apr 2009 21:00:55 +0000 (21:00 +0000)]
#4572: add SEEK_* values as constants in io.py.

16 years agoAdd link to an alternative generator with a long-period.
Raymond Hettinger [Wed, 1 Apr 2009 20:50:58 +0000 (20:50 +0000)]
Add link to an alternative generator with a long-period.

16 years agoFix for issue5040. Adding test for Content-Length
Senthil Kumaran [Wed, 1 Apr 2009 20:26:33 +0000 (20:26 +0000)]
Fix for issue5040. Adding test for Content-Length

16 years agobounds check arguments to mmap.move(). All of them. Really.
Jack Diederich [Wed, 1 Apr 2009 20:26:13 +0000 (20:26 +0000)]
bounds check arguments to mmap.move().  All of them.  Really.
fixes crasher on OS X 10.5

16 years agotest_warnings ironically had a single test that was not protecting the warnings
Brett Cannon [Wed, 1 Apr 2009 20:25:48 +0000 (20:25 +0000)]
test_warnings ironically had a single test that was not protecting the warnings
filter and was resetting it.

16 years agotest_logging was blindly clearing the warnings filter. This caused
Brett Cannon [Wed, 1 Apr 2009 19:57:10 +0000 (19:57 +0000)]
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.

16 years agoIssue #5647: MutableSet.__iand__() no longer mutates self during iteration.
Raymond Hettinger [Wed, 1 Apr 2009 18:50:56 +0000 (18:50 +0000)]
Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.

16 years agoAdding Wing project file
Michael Foord [Wed, 1 Apr 2009 18:25:38 +0000 (18:25 +0000)]
Adding Wing project file

16 years ago_warnings was importing itself to get an attribute. That's bad if warnings gets
Brett Cannon [Wed, 1 Apr 2009 18:03:59 +0000 (18:03 +0000)]
_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.

16 years agoPaul Kippes was given commit privileges to work on 3to2.
Brett Cannon [Wed, 1 Apr 2009 17:52:13 +0000 (17:52 +0000)]
Paul Kippes was given commit privileges to work on 3to2.

16 years ago#5655: fix docstring oversight.
Georg Brandl [Wed, 1 Apr 2009 17:46:01 +0000 (17:46 +0000)]
#5655: fix docstring oversight.

16 years agoRon DuPlain was given commit privileges at PyCon 2009 to work on 3to2.
Brett Cannon [Wed, 1 Apr 2009 17:07:16 +0000 (17:07 +0000)]
Ron DuPlain was given commit privileges at PyCon 2009 to work on 3to2.

16 years agoIssue 3270: document Listener address restrictions on windows
Jesse Noller [Wed, 1 Apr 2009 16:42:19 +0000 (16:42 +0000)]
Issue 3270: document Listener address restrictions on windows

16 years agohttp://bugs.python.org/issue5623
Kristján Valur Jónsson [Wed, 1 Apr 2009 16:08:34 +0000 (16:08 +0000)]
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

16 years agoThe cgitb module had imports in its functions. This can cause deadlock with the
Brett Cannon [Wed, 1 Apr 2009 16:00:34 +0000 (16:00 +0000)]
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.

16 years agoFix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH.
Georg Brandl [Wed, 1 Apr 2009 15:23:43 +0000 (15:23 +0000)]
Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH.

16 years agoFixed compile error on windows.
Hirokazu Yamamoto [Wed, 1 Apr 2009 15:13:52 +0000 (15:13 +0000)]
Fixed compile error on windows.

16 years agoAdd Maksim, who worked on several issues at the sprint.
Georg Brandl [Wed, 1 Apr 2009 14:02:27 +0000 (14:02 +0000)]
Add Maksim, who worked on several issues at the sprint.

16 years ago#5631: add upload to list of possible commands, which is presented in --help-commands.
Georg Brandl [Wed, 1 Apr 2009 04:32:39 +0000 (04:32 +0000)]
#5631: add upload to list of possible commands, which is presented in --help-commands.

16 years agoThe SimpleXMLRPCServer's CGI handler now runs like a pony.
Georg Brandl [Wed, 1 Apr 2009 04:21:14 +0000 (04:21 +0000)]
The SimpleXMLRPCServer's CGI handler now runs like a pony.

16 years agoFix multiprocessing.event to match the new threading.Event API
Jesse Noller [Wed, 1 Apr 2009 03:45:50 +0000 (03:45 +0000)]
Fix multiprocessing.event to match the new threading.Event API

16 years agoFix issue 2522. locale.format now checks that it is passed
R. David Murray [Wed, 1 Apr 2009 03:21:43 +0000 (03:21 +0000)]
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.

16 years agoFix for failing asyncore tests.
Josiah Carlson [Wed, 1 Apr 2009 01:28:11 +0000 (01:28 +0000)]
Fix for failing asyncore tests.

16 years agoIssue #5635: Fix running test_sys with tracing enabled.
Georg Brandl [Wed, 1 Apr 2009 00:04:33 +0000 (00:04 +0000)]
Issue #5635: Fix running test_sys with tracing enabled.

16 years ago#5228: add pickle support to functools.partial
Jack Diederich [Tue, 31 Mar 2009 23:46:48 +0000 (23:46 +0000)]
#5228: add pickle support to functools.partial

16 years agoFix Windows test skip error revealed by buildbot. Also a comment spelling
R. David Murray [Tue, 31 Mar 2009 23:45:39 +0000 (23:45 +0000)]
Fix Windows test skip error revealed by buildbot.  Also a comment spelling
correction in a previously fixed test.

16 years agoDont shout to users.
Georg Brandl [Tue, 31 Mar 2009 23:01:27 +0000 (23:01 +0000)]
Dont shout to users.

16 years agofixed the test for win32 CompileError
Tarek Ziadé [Tue, 31 Mar 2009 22:47:01 +0000 (22:47 +0000)]
fixed the test for win32 CompileError

16 years agocatching msvc9compiler error as well
Tarek Ziadé [Tue, 31 Mar 2009 22:44:10 +0000 (22:44 +0000)]
catching msvc9compiler error as well

16 years agoImprove examples for collections.deque()
Raymond Hettinger [Tue, 31 Mar 2009 22:43:03 +0000 (22:43 +0000)]
Improve examples for collections.deque()

16 years ago#5018: remove confusing paragraph.
Georg Brandl [Tue, 31 Mar 2009 22:40:16 +0000 (22:40 +0000)]
#5018: remove confusing paragraph.

16 years ago#5617: add a handy function to print a unicode string to gdbinit.
Georg Brandl [Tue, 31 Mar 2009 22:35:46 +0000 (22:35 +0000)]
#5617: add a handy function to print a unicode string to gdbinit.

16 years ago#5583 Added optional Extensions in Distutils
Tarek Ziadé [Tue, 31 Mar 2009 22:27:23 +0000 (22:27 +0000)]
#5583 Added optional Extensions in Distutils

16 years agoIssue 5619: Pass MS CRT debug flags into subprocesses
Jesse Noller [Tue, 31 Mar 2009 22:20:35 +0000 (22:20 +0000)]
Issue 5619: Pass MS CRT debug flags into subprocesses

16 years ago#3427: document correct return type for urlopen().info().
Georg Brandl [Tue, 31 Mar 2009 22:18:19 +0000 (22:18 +0000)]
#3427: document correct return type for urlopen().info().

16 years ago#1651995: fix _convert_ref for non-ASCII characters.
Georg Brandl [Tue, 31 Mar 2009 22:11:53 +0000 (22:11 +0000)]
#1651995: fix _convert_ref for non-ASCII characters.

16 years ago#5563: more documentation for bdist_msi.
Georg Brandl [Tue, 31 Mar 2009 22:03:40 +0000 (22:03 +0000)]
#5563: more documentation for bdist_msi.

16 years agoMade handle_expt_event() be called last, so that we don't accidentally read
Josiah Carlson [Tue, 31 Mar 2009 21:49:36 +0000 (21:49 +0000)]
Made handle_expt_event() be called last, so that we don't accidentally read
after closing the socket.

16 years ago#1676135: remove trailing slashes from --prefix argument.
Georg Brandl [Tue, 31 Mar 2009 21:45:18 +0000 (21:45 +0000)]
#1676135: remove trailing slashes from --prefix argument.

16 years ago#1675026: add a note about a strange Windows problem, and remove notes about AtheOS.
Georg Brandl [Tue, 31 Mar 2009 21:43:03 +0000 (21:43 +0000)]
#1675026: add a note about a strange Windows problem, and remove notes about AtheOS.

16 years agoRemove warning about pending Win9x support removal.
Georg Brandl [Tue, 31 Mar 2009 21:40:24 +0000 (21:40 +0000)]
Remove warning about pending Win9x support removal.

16 years agofix Thread.ident when it is the main thread or a dummy thread #5632
Benjamin Peterson [Tue, 31 Mar 2009 21:34:42 +0000 (21:34 +0000)]
fix Thread.ident when it is the main thread or a dummy thread #5632

16 years ago#5598: document DocFileSuite *args argument.
Georg Brandl [Tue, 31 Mar 2009 21:15:33 +0000 (21:15 +0000)]
#5598: document DocFileSuite *args argument.

16 years agotake the usual lock precautions around _active_limbo_lock
Benjamin Peterson [Tue, 31 Mar 2009 21:06:30 +0000 (21:06 +0000)]
take the usual lock precautions around _active_limbo_lock

16 years ago#1530012: move TQS section before raw strings.
Georg Brandl [Tue, 31 Mar 2009 20:56:32 +0000 (20:56 +0000)]
#1530012: move TQS section before raw strings.

16 years agomaking sdist and config test silents
Tarek Ziadé [Tue, 31 Mar 2009 20:56:11 +0000 (20:56 +0000)]
making sdist and config test silents

16 years agoadded tests to the install_headers command
Tarek Ziadé [Tue, 31 Mar 2009 20:55:21 +0000 (20:55 +0000)]
added tests to the install_headers command

16 years agoadded test to the install_data command
Tarek Ziadé [Tue, 31 Mar 2009 20:54:38 +0000 (20:54 +0000)]
added test to the install_data command

16 years agomore tests for the upload command
Tarek Ziadé [Tue, 31 Mar 2009 20:53:55 +0000 (20:53 +0000)]
more tests for the upload command

16 years agomore tests for the register command
Tarek Ziadé [Tue, 31 Mar 2009 20:53:13 +0000 (20:53 +0000)]
more tests for the register command

16 years agoadded tests for the clean command
Tarek Ziadé [Tue, 31 Mar 2009 20:50:59 +0000 (20:50 +0000)]
added tests for the clean command

16 years agousing log.warn for sys.stderr
Tarek Ziadé [Tue, 31 Mar 2009 20:48:31 +0000 (20:48 +0000)]
using log.warn for sys.stderr

16 years ago#1674032: return value of flag from Event.wait(). OKed by Guido.
Georg Brandl [Tue, 31 Mar 2009 20:41:08 +0000 (20:41 +0000)]
#1674032: return value of flag from Event.wait(). OKed by Guido.

16 years agoIssue #5387: Fixed mmap.move crash by integer overflow. (take2)
Hirokazu Yamamoto [Tue, 31 Mar 2009 20:14:04 +0000 (20:14 +0000)]
Issue #5387: Fixed mmap.move crash by integer overflow. (take2)

16 years agoIssue an actual PendingDeprecationWarning for the TestCase.fail* methods.
Gregory P. Smith [Tue, 31 Mar 2009 19:59:14 +0000 (19:59 +0000)]
Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.
Document the deprecation.

16 years agoAdd NEWS entry for regrtest change.
R. David Murray [Tue, 31 Mar 2009 19:57:24 +0000 (19:57 +0000)]
Add NEWS entry for regrtest change.

16 years agoRemove the regrtest check that turns any ImportError into a skipped test.
R. David Murray [Tue, 31 Mar 2009 19:49:15 +0000 (19:49 +0000)]
Remove the regrtest check that turns any ImportError into a skipped test.
Hopefully all modules whose imports legitimately result in a skipped
test have been properly wrapped by the previous commits.

16 years agoImprove test_support.import_module docstring, remove
R. David Murray [Tue, 31 Mar 2009 19:33:15 +0000 (19:33 +0000)]
Improve test_support.import_module docstring, remove
deprecated flag from get_attribute since it isn't likely
to do anything useful.

16 years agoThis resolves issue 1161031. Tests pass.
Josiah Carlson [Tue, 31 Mar 2009 19:32:34 +0000 (19:32 +0000)]
This resolves issue 1161031.  Tests pass.

16 years agoDelete out-of-date and little-known README from the test
R. David Murray [Tue, 31 Mar 2009 19:31:17 +0000 (19:31 +0000)]
Delete out-of-date and little-known README from the test
directory by consensus of devs at pycon sprint.

16 years ago#5618: fix typo.
Georg Brandl [Tue, 31 Mar 2009 19:30:56 +0000 (19:30 +0000)]
#5618: fix typo.

16 years ago#4411: document mro() and __mro__. (I hope I got it right.)
Georg Brandl [Tue, 31 Mar 2009 19:26:24 +0000 (19:26 +0000)]
#4411: document mro() and __mro__. (I hope I got it right.)

16 years agoFix-up unwanted change.
Georg Brandl [Tue, 31 Mar 2009 19:14:42 +0000 (19:14 +0000)]
Fix-up unwanted change.

16 years ago#5190: export make_option in __all__.
Georg Brandl [Tue, 31 Mar 2009 19:12:17 +0000 (19:12 +0000)]
#5190: export make_option in __all__.

16 years ago#1096310: document usage of sys.__std*__ a bit better.
Georg Brandl [Tue, 31 Mar 2009 19:10:35 +0000 (19:10 +0000)]
#1096310: document usage of sys.__std*__ a bit better.

16 years ago#4882: document named group behavior a bit better.
Georg Brandl [Tue, 31 Mar 2009 19:06:57 +0000 (19:06 +0000)]
#4882: document named group behavior a bit better.

16 years agoRename the actual method definitions to the official assertFoo names.
Gregory P. Smith [Tue, 31 Mar 2009 19:03:28 +0000 (19:03 +0000)]
Rename the actual method definitions to the official assertFoo names.

Adds unittests to make sure the old fail* names continue to work now
and adds a comment that they are pending deprecation.

Also adds a test to confirm that the plural Equals method variants
continue to exist even though we're unlikely to deprecate those.

http://bugs.python.org/issue2578

16 years ago#5241: document missing U in regex howto.
Georg Brandl [Tue, 31 Mar 2009 18:38:56 +0000 (18:38 +0000)]
#5241: document missing U in regex howto.

16 years ago#5227: note that Py_Main doesnt return on SystemExit.
Georg Brandl [Tue, 31 Mar 2009 18:33:10 +0000 (18:33 +0000)]
#5227: note that Py_Main doesnt return on SystemExit.

16 years agoA few more test skips via import_module, and change import_module to
R. David Murray [Tue, 31 Mar 2009 18:32:17 +0000 (18:32 +0000)]
A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import
in the package whose import is being wrapped is what failed the skip
message will contain the name of that module instead of the name of the
wrapped module.  Also fixed formatting of some previous comments.

16 years ago#5245: note that PyRun_SimpleString doesnt return on SystemExit.
Georg Brandl [Tue, 31 Mar 2009 18:30:37 +0000 (18:30 +0000)]
#5245: note that PyRun_SimpleString doesnt return on SystemExit.

16 years agomissed the news/acks for netbsd patch
Jesse Noller [Tue, 31 Mar 2009 18:27:14 +0000 (18:27 +0000)]
missed the news/acks for netbsd patch

16 years ago#837577: note cryptic return value of spawn*e on invalid env dicts.
Georg Brandl [Tue, 31 Mar 2009 18:26:55 +0000 (18:26 +0000)]
#837577: note cryptic return value of spawn*e on invalid env dicts.

16 years agoApply patch for netbsd multiprocessing support
Jesse Noller [Tue, 31 Mar 2009 18:12:35 +0000 (18:12 +0000)]
Apply patch for netbsd multiprocessing support

16 years agoPer the language summit, the optional fastpath imports should use from-import-star.
Raymond Hettinger [Tue, 31 Mar 2009 17:47:06 +0000 (17:47 +0000)]
Per the language summit, the optional fastpath imports should use from-import-star.

16 years ago#970783: document PyObject_Generic[GS]etAttr.
Georg Brandl [Tue, 31 Mar 2009 17:13:06 +0000 (17:13 +0000)]
#970783: document PyObject_Generic[GS]etAttr.

16 years ago#992207: document that the parser only accepts \\n newlines.
Georg Brandl [Tue, 31 Mar 2009 16:54:38 +0000 (16:54 +0000)]
#992207: document that the parser only accepts \\n newlines.

16 years agoThe unittest.TestCase.assertEqual() now displays the differences in lists,
Gregory P. Smith [Tue, 31 Mar 2009 16:54:10 +0000 (16:54 +0000)]
The unittest.TestCase.assertEqual() now displays the differences in lists,
tuples, dicts and sets on failure.

Many new handy type and comparison specific assert* methods have been added
that fail with error messages actually useful for debugging.  Contributed in
by Google and completed with help from mfoord and GvR at PyCon 2009 sprints.

Discussion lives in http://bugs.python.org/issue2578.

16 years ago#5417: replace references to undocumented functions by ones to documented functions.
Georg Brandl [Tue, 31 Mar 2009 16:50:25 +0000 (16:50 +0000)]
#5417: replace references to undocumented functions by ones to documented functions.

16 years ago#1386675: specify WindowsError as the exception, because it has a winerror attribute...
Georg Brandl [Tue, 31 Mar 2009 16:31:11 +0000 (16:31 +0000)]
#1386675: specify WindowsError as the exception, because it has a winerror attribute that EnvironmentError doesnt have.