Jesus Cea
f745d8be46
merge
2011-04-20 22:40:48 +02:00
Jesus Cea
f620754597
merge heads
2011-04-20 22:39:29 +02:00
Jesus Cea
7365accc20
merge heads
2011-04-20 22:38:26 +02:00
Jesus Cea
d9c0eb93bd
null merge
2011-04-20 22:32:19 +02:00
Jesus Cea
f299c51346
null merge
2011-04-20 22:31:34 +02:00
Jesus Cea
2fc8b87499
Port 5b607cd8c71b ( closes #11892 )
2011-04-20 22:26:57 +02:00
Raymond Hettinger
4f438b7b00
Minor text rearrangement.
2011-04-20 13:09:46 -07:00
Raymond Hettinger
296d6d0cd6
Minor text rearrangement.
2011-04-20 13:08:40 -07:00
Raymond Hettinger
fc330aeb6f
Minor text rearrangement.
2011-04-20 13:03:49 -07:00
Jesus Cea
9a747fd376
merge
2011-04-20 21:13:36 +02:00
Jesus Cea
902d96b32d
heads merging
2011-04-20 21:11:52 +02:00
Jesus Cea
db26dff560
heads merging
2011-04-20 21:10:20 +02:00
Jesus Cea
f386764812
null merge
2011-04-20 21:01:45 +02:00
Jesus Cea
ec81d41242
null merge
2011-04-20 21:00:40 +02:00
Ezio Melotti
5020e000c5
Merge with 3.2.
2011-04-20 21:59:06 +03:00
Ezio Melotti
af92842bf9
Use non-deprecated method name.
2011-04-20 21:56:21 +03:00
Jesus Cea
56fd326056
null merge
2011-04-20 20:54:05 +02:00
Jesus Cea
5ccd27841a
merge
2011-04-20 20:51:59 +02:00
Jesus Cea
c3ab577f34
merge
2011-04-20 20:51:09 +02:00
Jesus Cea
1a7206bdd3
null merge
2011-04-20 20:49:06 +02:00
Ezio Melotti
32f4db3175
Merge with 3.2.
2011-04-20 21:33:29 +03:00
Jesus Cea
7124f5f7e8
MERGE: Up-port changeset 5cf8f6da8743 ( closes #11890 )
2011-04-20 20:32:52 +02:00
Ezio Melotti
861d27f4cf
Merge with 3.1.
2011-04-20 21:32:40 +03:00
Ezio Melotti
e402724912
Fix wrong function name. Noticed by Clive Darke.
2011-04-20 21:29:31 +03:00
Jesus Cea
1d4ae84e53
Up-port changeset 5cf8f6da8743 ( closes #11890 )
2011-04-20 20:24:57 +02:00
Éric Araujo
ab20b164b9
Merge 3.2
2011-04-20 20:22:57 +02:00
Éric Araujo
37e6c54ba1
Merge 3.1
2011-04-20 19:24:09 +02:00
Éric Araujo
6f205ed37e
Branch merge
2011-04-20 19:23:26 +02:00
Éric Araujo
5c1a0c969d
Fix argument name in reST doc to match the code
2011-04-20 19:11:12 +02:00
Éric Araujo
ad0790e573
Branch merge
2011-04-20 18:54:12 +02:00
Éric Araujo
f8e1b60799
Add docstring to dbm.open
2011-04-20 18:52:55 +02:00
Jesus Cea
c1ceb64e41
MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. ( closes #11828 )
2011-04-20 17:59:29 +02:00
Jesus Cea
6159ee3cf5
MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. ( closes #11828 )
2011-04-20 17:42:50 +02:00
Jesus Cea
ac4515063c
startswith and endswith don't accept None as slice index. Patch by Torsten Becker. ( closes #11828 )
2011-04-20 17:09:23 +02:00
Vinay Sajip
5e66b167ff
Tidied comments and docstrings.
2011-04-20 15:41:14 +01:00
Vinay Sajip
5b9eecf8cf
Attempt fix of #11557 by refining test logic.
2011-04-20 12:50:42 +01:00
Vinay Sajip
1e42f9e4c0
Attempt fix of #11557 by refining setup/teardown logic.
2011-04-20 12:20:44 +01:00
Vinay Sajip
95bf50416e
Attempt fix of #11557 by changing setup/teardown logic.
2011-04-20 11:50:56 +01:00
Victor Stinner
e07f522c7f
Issue #11223 : fix compiler warnings
2011-04-20 12:23:26 +02:00
Vinay Sajip
3def7e0f01
Attempt fix of #11557 by changing teardown logic.
2011-04-20 10:58:06 +01:00
Victor Stinner
783c82c701
Close #11619 : write_compiled_module() doesn't encode the filename
...
Reimplement open_exclusive() using _wopen() to avoid encoding the filename to
the filesystem encoding: use the Unicode version of the Windows API.
2011-04-20 03:27:51 +02:00
Raymond Hettinger
f48ac3001a
Issue #11875 : Alter the previous fix to work better with subclasses
2011-04-19 17:19:11 -07:00
Raymond Hettinger
25458f155a
Issue #11875 : Alter the previous fix to work better with subclasses
2011-04-19 17:17:51 -07:00
Raymond Hettinger
d07eaf177c
Issue #11875 : Alter the previous fix to work better with subclasses
2011-04-19 17:17:23 -07:00
Victor Stinner
2d70e29998
Issue #11223 : fix test_dummy_threading, add _dummy_thread.info()
2011-04-20 00:26:28 +02:00
Victor Stinner
754851f456
Issue #11223 : Add threading._info() function providing informations about the
...
thread implementation.
Skip test_lock_acquire_interruption() and test_rlock_acquire_interruption() of
test_threadsignals if a thread lock is implemented using a POSIX mutex and a
POSIX condition variable. A POSIX condition variable cannot be interrupted by a
signal (e.g. on Linux, the futex system call is restarted).
2011-04-19 23:58:51 +02:00
Victor Stinner
cf2a807831
faulthandler: don't use sigprocmask()
...
It has an undefined behaviour with threads, only use pthread_sigmask() if
it is available (and not broken).
2011-04-19 23:30:57 +02:00
Ezio Melotti
4571ee0b78
Merge with 3.2.
2011-04-19 23:24:32 +03:00
Ezio Melotti
a947abec6a
Merge with 3.1.
2011-04-19 23:23:47 +03:00
Ezio Melotti
8dfcab0885
Fix wrong number of functions noticed by Sandro Tosi.
2011-04-19 23:15:13 +03:00