]>
granicus.if.org Git - python/log
Vinay Sajip [Thu, 5 May 2011 20:23:42 +0000 (21:23 +0100)]
Added additional output to help diagnose buildbot failures.
Raymond Hettinger [Thu, 5 May 2011 18:50:36 +0000 (11:50 -0700)]
null merge
Raymond Hettinger [Thu, 5 May 2011 18:49:12 +0000 (11:49 -0700)]
Sync-up minor code edits with the default branch.
Raymond Hettinger [Thu, 5 May 2011 18:38:06 +0000 (11:38 -0700)]
Avoid codec spelling issues by just using the utf-8 default.
Raymond Hettinger [Thu, 5 May 2011 18:35:50 +0000 (11:35 -0700)]
Avoid codec spelling issues by just using the utf-8 default.
Antoine Pitrou [Thu, 5 May 2011 18:18:19 +0000 (20:18 +0200)]
Merge: Use shared testing facilities in test_threading
Antoine Pitrou [Thu, 5 May 2011 18:17:32 +0000 (20:17 +0200)]
Use shared testing facilities in test_threading
R David Murray [Thu, 5 May 2011 16:17:50 +0000 (12:17 -0400)]
Merge: #11873: Improve test regex so random directory names don't cause test to fail
R David Murray [Thu, 5 May 2011 15:52:44 +0000 (11:52 -0400)]
#11873: Improve test regex so random directory names don't cause test to fail
Nick Coghlan [Thu, 5 May 2011 14:03:49 +0000 (00:03 +1000)]
Merge from 3.2
Nick Coghlan [Thu, 5 May 2011 14:02:12 +0000 (00:02 +1000)]
Remove trailing whitespace
Nick Coghlan [Thu, 5 May 2011 13:58:57 +0000 (23:58 +1000)]
Merge #11647 update from 3.2
Nick Coghlan [Thu, 5 May 2011 13:49:25 +0000 (23:49 +1000)]
Issue #11647: allow contextmanager objects to be used as decorators as described in the docs. Initial patch by Ysj Ray.
Vinay Sajip [Thu, 5 May 2011 13:18:33 +0000 (14:18 +0100)]
Tweaked timed rollover test to allow for test-time delays.
Vinay Sajip [Thu, 5 May 2011 11:59:59 +0000 (12:59 +0100)]
Merged changes.
Vinay Sajip [Thu, 5 May 2011 11:59:14 +0000 (12:59 +0100)]
Improved coverage and fixed bug in HTTPHandler with POST requests.
Ezio Melotti [Thu, 5 May 2011 11:21:55 +0000 (14:21 +0300)]
#11997: merge with 3.2.
Ezio Melotti [Thu, 5 May 2011 11:21:18 +0000 (14:21 +0300)]
#11997: merge with 3.1.
Ezio Melotti [Thu, 5 May 2011 11:19:48 +0000 (14:19 +0300)]
#11997: fix typo in init.rst.
R David Murray [Thu, 5 May 2011 01:08:07 +0000 (21:08 -0400)]
Merge #8158: add missing 'description' description to optparse docstring.
R David Murray [Thu, 5 May 2011 01:07:33 +0000 (21:07 -0400)]
Merge #8158: add missing 'description' description to optparse docstring.
R David Murray [Thu, 5 May 2011 01:06:57 +0000 (21:06 -0400)]
#8158: add missing 'description' description to optparse docstring.
Daniel Stutzbach [Wed, 4 May 2011 19:47:14 +0000 (12:47 -0700)]
#11335: Merge from 3.2: Fix memory leak after key function failure in sort
Daniel Stutzbach [Wed, 4 May 2011 19:46:28 +0000 (12:46 -0700)]
#11335: Fix memory leak after key function failure in sort
Antoine Pitrou [Wed, 4 May 2011 18:04:29 +0000 (20:04 +0200)]
Issue #1856: Avoid crashes and lockups when daemon threads run while the
interpreter is shutting down; instead, these threads are now killed when
they try to take the GIL.
Antoine Pitrou [Wed, 4 May 2011 18:02:30 +0000 (20:02 +0200)]
Issue #1856: Avoid crashes and lockups when daemon threads run while the
interpreter is shutting down; instead, these threads are now killed when
they try to take the GIL.
Alexis Metaireau [Wed, 4 May 2011 16:58:00 +0000 (17:58 +0100)]
Add a reference to the PEP 398 for python 3.3 release schedule
Ezio Melotti [Wed, 4 May 2011 15:39:59 +0000 (18:39 +0300)]
#11985: merge with 3.2.
Ezio Melotti [Wed, 4 May 2011 15:39:29 +0000 (18:39 +0300)]
#11985: merge with 3.1.
Ezio Melotti [Wed, 4 May 2011 15:37:50 +0000 (18:37 +0300)]
#11985: update docstring of platform.python_implementation.
Alexander Belopolsky [Wed, 4 May 2011 14:28:26 +0000 (10:28 -0400)]
Mention that timezone is a subclass of tzinfo.
Victor Stinner [Wed, 4 May 2011 11:55:36 +0000 (13:55 +0200)]
Replace open(filename, 'rU') by open(filename, 'r')
The U flag is no more used (but still accepted for backward compatibility).
Victor Stinner [Wed, 4 May 2011 11:20:35 +0000 (13:20 +0200)]
Issue #8407: signal.pthread_sigmask() returns a set instead of a list
Update the doc. Refactor also related tests.
Victor Stinner [Wed, 4 May 2011 10:38:03 +0000 (12:38 +0200)]
Issue #11998, issue #8407: workaround _tkinter issue in test_signal
The _tkinter module loads the Tcl library which creates a thread waiting events
in select(). This thread receives signals blocked by all other threads. We
cannot test blocked signals if the _tkinter module is loaded.
Victor Stinner [Wed, 4 May 2011 09:02:12 +0000 (11:02 +0200)]
regrtest: dump all threads on a crash, not only the current thread
Brian Curtin [Wed, 4 May 2011 02:58:32 +0000 (21:58 -0500)]
Fix #11834. Correct site-packages paths.
Patch by Bryce Verdier.
Brian Curtin [Wed, 4 May 2011 02:57:56 +0000 (21:57 -0500)]
Fix #11834. Correct site-packages paths.
Patch by Bryce Verdier.
Brian Curtin [Wed, 4 May 2011 02:57:00 +0000 (21:57 -0500)]
Fix #11834. Correct site-packages paths.
Patch by Bryce Verdier.
Mark Dickinson [Tue, 3 May 2011 20:13:40 +0000 (21:13 +0100)]
test_math.py: Use correct signs on zeros for expected fmod results.
Mark Dickinson [Tue, 3 May 2011 20:02:51 +0000 (21:02 +0100)]
Remove an unused import and an unused local definition from test_math.py.
Raymond Hettinger [Tue, 3 May 2011 18:16:36 +0000 (11:16 -0700)]
Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable.
Raymond Hettinger [Tue, 3 May 2011 18:01:32 +0000 (11:01 -0700)]
Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable.
Ezio Melotti [Tue, 3 May 2011 17:44:26 +0000 (20:44 +0300)]
#11985: merge with 3.2.
Ezio Melotti [Tue, 3 May 2011 17:43:48 +0000 (20:43 +0300)]
#11985: merge with 3.1.
Ezio Melotti [Tue, 3 May 2011 17:41:48 +0000 (20:41 +0300)]
#11985: document the return value of platform.python_implementation for PyPy.
Antoine Pitrou [Tue, 3 May 2011 16:18:59 +0000 (18:18 +0200)]
Issue #11849: Make it more likely for the system allocator to release
free()d memory arenas on glibc-based systems. Patch by Charles-François
Natali.
Victor Stinner [Tue, 3 May 2011 15:20:31 +0000 (17:20 +0200)]
Issue #8407: disable faulthandler timeout thread on all platforms
The problem is not specific to Mac OS X.
Antoine Pitrou [Tue, 3 May 2011 14:35:43 +0000 (16:35 +0200)]
Fix typo in name of private function
Antoine Pitrou [Tue, 3 May 2011 14:34:42 +0000 (16:34 +0200)]
Fix typo in name of private function
Victor Stinner [Tue, 3 May 2011 12:57:12 +0000 (14:57 +0200)]
Issue #8407: pthread_sigmask() checks immediatly if signal handlers have been
called. The test checks that SIG_UNBLOCK calls immediatly the signal handler of
the pending SIGUSR1. Improve also the tests using an exception (division by
zero) instead of a flag (a function attribute).
Victor Stinner [Tue, 3 May 2011 12:11:22 +0000 (14:11 +0200)]
Issue #8407: Fix pthread_sigmask() tests on Mac OS X
Disable faulthandler timeout thread on Mac OS X: it interacts with
pthread_sigmask() tests.
Brian Curtin [Tue, 3 May 2011 03:30:06 +0000 (22:30 -0500)]
Adjust OS/2 & VMS grammar, and add Windows 2000 to the unsupported list.
Alexander Belopolsky [Mon, 2 May 2011 18:14:48 +0000 (14:14 -0400)]
Issue #11930: Added Misc/NEWS and versionchanged entries.
Raymond Hettinger [Mon, 2 May 2011 18:03:37 +0000 (11:03 -0700)]
merge
Raymond Hettinger [Mon, 2 May 2011 18:02:13 +0000 (11:02 -0700)]
Backport 3.3 fixes and cleans ups.
Alexander Belopolsky [Mon, 2 May 2011 17:48:09 +0000 (13:48 -0400)]
Relax %Y test.
Alexander Belopolsky [Mon, 2 May 2011 17:44:20 +0000 (13:44 -0400)]
Removed unused variable
Alexander Belopolsky [Mon, 2 May 2011 17:14:24 +0000 (13:14 -0400)]
Issue #11930: Remove year >= 1000 limitation from datetime.strftime.
Patch by Victor Stinner.
Raymond Hettinger [Mon, 2 May 2011 16:53:36 +0000 (09:53 -0700)]
dummy merge
Raymond Hettinger [Mon, 2 May 2011 16:50:15 +0000 (09:50 -0700)]
Backport code cleanup for namedtuples.
Alexander Belopolsky [Mon, 2 May 2011 16:31:17 +0000 (12:31 -0400)]
merge
Alexander Belopolsky [Mon, 2 May 2011 16:20:52 +0000 (12:20 -0400)]
Issue #11930: Remove deprecated time.accept2dyear.
Victor Stinner [Mon, 2 May 2011 14:15:43 +0000 (16:15 +0200)]
cleanup signalmodule.c: use PyModule_AddIntMacro()
Victor Stinner [Mon, 2 May 2011 14:14:16 +0000 (16:14 +0200)]
(Merge 3.2) logging: don't define QueueListener if Python has no thread support
Victor Stinner [Mon, 2 May 2011 14:11:28 +0000 (16:11 +0200)]
logging: don't define QueueListener if Python has no thread support
Vinay Sajip [Mon, 2 May 2011 13:43:00 +0000 (14:43 +0100)]
Improved thread interlocks in tests.
Vinay Sajip [Mon, 2 May 2011 13:31:16 +0000 (14:31 +0100)]
Updated docstrings.
R David Murray [Mon, 2 May 2011 12:48:00 +0000 (08:48 -0400)]
Merge: I was right, hardconding the localhost IP doesn't work in linux-vserver.
R David Murray [Mon, 2 May 2011 12:47:24 +0000 (08:47 -0400)]
I was right, hardconding the localhost IP doesn't work in linux-vserver.
Vinay Sajip [Mon, 2 May 2011 12:18:21 +0000 (13:18 +0100)]
Merge.
Vinay Sajip [Mon, 2 May 2011 12:17:27 +0000 (13:17 +0100)]
Added tests to improve coverage.
Éric Araujo [Mon, 2 May 2011 11:33:14 +0000 (13:33 +0200)]
Merge 3.2
Éric Araujo [Mon, 2 May 2011 11:12:23 +0000 (13:12 +0200)]
Merge 3.1
Éric Araujo [Mon, 2 May 2011 11:10:36 +0000 (13:10 +0200)]
Branch merge
Éric Araujo [Mon, 2 May 2011 11:10:18 +0000 (13:10 +0200)]
Add missing colon
Benjamin Peterson [Mon, 2 May 2011 01:24:59 +0000 (20:24 -0500)]
merge 3.2
Benjamin Peterson [Mon, 2 May 2011 01:24:40 +0000 (20:24 -0500)]
merge 3.1
Raymond Hettinger [Mon, 2 May 2011 01:14:49 +0000 (18:14 -0700)]
Fix spelling.
Victor Stinner [Sun, 1 May 2011 23:14:55 +0000 (01:14 +0200)]
(Merge 3.2) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X
to get around a mmap bug with sparse files. Patch written by Steffen Daode
Nurpmeso.
Victor Stinner [Sun, 1 May 2011 23:11:33 +0000 (01:11 +0200)]
(Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X
to get around a mmap bug with sparse files. Patch written by Steffen Daode
Nurpmeso.
Victor Stinner [Sun, 1 May 2011 23:05:37 +0000 (01:05 +0200)]
Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a
mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
Benjamin Peterson [Sun, 1 May 2011 22:39:52 +0000 (17:39 -0500)]
merge 3.2
Benjamin Peterson [Sun, 1 May 2011 22:39:40 +0000 (17:39 -0500)]
merge 3.1
Benjamin Peterson [Sun, 1 May 2011 22:38:17 +0000 (17:38 -0500)]
note abcs of int and float (closes #11977)
Victor Stinner [Sun, 1 May 2011 21:48:41 +0000 (23:48 +0200)]
(Merge 3.2) Issue #9756: credit the author, Andreas Stührk (Trundle)
Victor Stinner [Sun, 1 May 2011 21:47:56 +0000 (23:47 +0200)]
(Merge 3.1) Issue #9756: credit the author, Andreas Stührk (Trundle)
Victor Stinner [Sun, 1 May 2011 21:46:48 +0000 (23:46 +0200)]
Issue #9756: credit the author, Andreas Stührk (Trundle)
Victor Stinner [Sun, 1 May 2011 21:33:06 +0000 (23:33 +0200)]
(Merge 3.2) Issue #9756: When calling a method descriptor or a slot wrapper
descriptor, the check of the object type doesn't read the __class__ attribute
anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy
of the str type).
Victor Stinner [Sun, 1 May 2011 21:31:36 +0000 (23:31 +0200)]
(Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper
descriptor, the check of the object type doesn't read the __class__ attribute
anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy
of the str type).
Victor Stinner [Sun, 1 May 2011 21:19:15 +0000 (23:19 +0200)]
Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the
check of the object type doesn't read the __class__ attribute anymore. Fix a
crash if a class override its __class__ attribute (e.g. a proxy of the str
type).
Victor Stinner [Sun, 1 May 2011 20:57:43 +0000 (22:57 +0200)]
regrtest: add the name of the failing test on a child error (-j option)
Georg Brandl [Sun, 1 May 2011 20:37:46 +0000 (22:37 +0200)]
merge with 3.2
Georg Brandl [Sun, 1 May 2011 20:37:23 +0000 (22:37 +0200)]
Split combined code/doctest code blocks in two blocks, to enable proper highlighting.
Georg Brandl [Sun, 1 May 2011 20:34:31 +0000 (22:34 +0200)]
Split combined code/doctest code blocks in two blocks, to enable proper highlighting.
R David Murray [Sun, 1 May 2011 15:15:01 +0000 (11:15 -0400)]
Merge #11971: fix man page; it's -OO not -O0
Patch by Lars Michelsen.
R David Murray [Sun, 1 May 2011 15:14:31 +0000 (11:14 -0400)]
Merge #11971: fix man page; it's -OO not -O0
Patch by Lars Michelsen.
R David Murray [Sun, 1 May 2011 15:13:56 +0000 (11:13 -0400)]
#11971: fix man page; it's -OO not -O0
Patch by Lars Michelsen.
Éric Araujo [Sun, 1 May 2011 00:14:48 +0000 (02:14 +0200)]
Fix wording
Victor Stinner [Sat, 30 Apr 2011 23:23:03 +0000 (01:23 +0200)]
Close #11958: Fix FTP tests for IPv6, bind to "::1" instead of "localhost".
Patch written by Charles-Francois Natali.
R David Murray [Sat, 30 Apr 2011 21:29:28 +0000 (17:29 -0400)]
Merge #11883: fix email examples by adding 'localhost' to SMTP constructor calls