Victor Stinner
|
9bf133ca31
|
Fix #11825: disable regrtest timeout if Python doesn't support threads
|
2011-04-13 01:06:27 +02:00 |
|
Senthil Kumaran
|
2643041970
|
Fix Issue11703 - urllib2.geturl() does not return correct url when the original url contains #fragment. Patch Contribution by Santoso Wijaya.
|
2011-04-13 07:01:19 +08:00 |
|
Raymond Hettinger
|
7c9d34722d
|
Issue 11747: Fix output format for context diffs.
|
2011-04-12 15:48:25 -07:00 |
|
Raymond Hettinger
|
9180deb59c
|
Issue 11747: Fix output format for context diffs.
|
2011-04-12 15:25:30 -07:00 |
|
Raymond Hettinger
|
f03d3028e0
|
Issue 11747: Fix output format for context diffs.
|
2011-04-12 15:19:33 -07:00 |
|
Raymond Hettinger
|
3780542039
|
Issue 11747: Fix output format for context diffs.
|
2011-04-12 15:14:12 -07:00 |
|
Victor Stinner
|
4d65224f68
|
Issue #11186: pydoc ignores a module if its name contains a surrogate character
in the index of modules.
|
2011-04-12 23:41:50 +02:00 |
|
Nadeem Vawda
|
ea4b46f9a9
|
Fix 64-bit safety issue in BZ2Compressor and BZ2Decompressor.
|
2011-04-12 23:02:42 +02:00 |
|
R David Murray
|
b30f1b4106
|
Merge: Add maxlinelen to docstring, delete obsolete wording
|
2011-04-12 15:02:07 -04:00 |
|
R David Murray
|
94f90dd4a1
|
Merge: Add maxlinelen to docstring, delete obsolete wording
|
2011-04-12 15:01:28 -04:00 |
|
R David Murray
|
308f14aeae
|
Add maxlinelen to docstring, delete obsolete wording
|
2011-04-12 15:00:44 -04:00 |
|
Raymond Hettinger
|
d92232976e
|
Neaten-up the fix to issue 11830
|
2011-04-12 09:06:01 -07:00 |
|
Antoine Pitrou
|
b7877f203d
|
Issue #11815: Use a light-weight SimpleQueue for the result queue in concurrent.futures.ProcessPoolExecutor.
|
2011-04-12 17:58:11 +02:00 |
|
Antoine Pitrou
|
3fdd9b681d
|
Issue #11815: Remove dead code in concurrent.futures (since a blocking Queue
cannot raise queue.Empty).
|
2011-04-12 17:50:20 +02:00 |
|
Antoine Pitrou
|
27be5da831
|
Issue #11815: Remove dead code in concurrent.futures (since a blocking Queue
cannot raise queue.Empty).
|
2011-04-12 17:48:46 +02:00 |
|
Ezio Melotti
|
4ded0c0462
|
Remove unnecessary imports and use assertIs instead of assertTrue.
|
2011-04-12 16:06:43 +03:00 |
|
Ezio Melotti
|
1b93021214
|
#9233: skip _json-specific tests when _json is not available.
|
2011-04-12 15:59:50 +03:00 |
|
Raymond Hettinger
|
9d2ad441b9
|
Use floor division operator instead of deprecated division operator.
|
2011-04-11 17:45:01 -07:00 |
|
Raymond Hettinger
|
e4579c3380
|
Issue #11830: Remove unnecessary introspection code in the decimal module.
It was causing a failed import in the Turkish locale where the locale
sensitive str.upper() method caused a name mismatch.
|
2011-04-11 17:27:42 -07:00 |
|
brian.curtin
|
40b5316118
|
Fix #5162. Allow child spawning from Windows services (via pywin32).
|
2011-04-11 18:00:59 -05:00 |
|
brian.curtin
|
80e478362b
|
Fix #5162. Allow child spawning from Windows services (via pywin32).
|
2011-04-11 17:59:01 -05:00 |
|
brian.curtin
|
727b498102
|
Fix #5162. Allow child spawning from Windows services (via pywin32).
|
2011-04-11 17:57:59 -05:00 |
|
brian.curtin
|
e2f299845d
|
Fix #5162. Allow child spawning from Windows services (via pywin32).
|
2011-04-11 17:56:23 -05:00 |
|
Raymond Hettinger
|
2498c9f06e
|
Issue #11747: Fix range formatting in context and unified diffs.
|
2011-04-11 12:42:59 -07:00 |
|
Raymond Hettinger
|
49353d0e8f
|
Issue #11747: Fix range formatting in context and unified diffs.
|
2011-04-11 12:40:58 -07:00 |
|
Vinay Sajip
|
a3359eec7d
|
Whitespace normalized.
|
2011-04-11 08:43:52 +01:00 |
|
Vinay Sajip
|
4a0a31df5c
|
Added 'handlers' argument to logging.basicConfig.
|
2011-04-11 08:42:07 +01:00 |
|
Ezio Melotti
|
8b4367ec10
|
#4877: Fix a segfault in xml.parsers.expat while attempting to parse a closed file.
|
2011-04-11 03:44:28 +03:00 |
|
Raymond Hettinger
|
e2b63e232e
|
Cleanup and modernize code prior to working on Issue 11747.
|
2011-04-10 17:23:32 -07:00 |
|
Raymond Hettinger
|
47e120e70c
|
Cleanup and modernize code prior to working on Issue 11747.
|
2011-04-10 17:14:56 -07:00 |
|
Antoine Pitrou
|
7dfc874a48
|
Issue #8428: Fix a race condition in multiprocessing.Pool when terminating
worker processes: new processes would be spawned while the pool is being
shut down. Patch by Charles-François Natali.
|
2011-04-11 00:26:42 +02:00 |
|
Antoine Pitrou
|
753009a657
|
Merge from 3.2 (issue #11814, issue #8428)
|
2011-04-11 00:22:08 +02:00 |
|
Antoine Pitrou
|
bed9a5b6b3
|
Issue #11814: Fix likely typo in multiprocessing.Pool._terminate().
|
2011-04-11 00:20:23 +02:00 |
|
Antoine Pitrou
|
81dee6b4d4
|
Issue #8428: Fix a race condition in multiprocessing.Pool when terminating
worker processes: new processes would be spawned while the pool is being
shut down. Patch by Charles-François Natali.
|
2011-04-11 00:18:59 +02:00 |
|
R David Murray
|
eb9e074dca
|
Use stock assertEqual instead of custom ndiffAssertEqual.
Eventually I'll actually replace the calls in the tests themselves.
|
2011-04-10 15:28:29 -04:00 |
|
Ezio Melotti
|
88fdeb45ef
|
#2650: re.escape() no longer escapes the "_".
|
2011-04-10 12:59:16 +03:00 |
|
Ned Deily
|
04cb72f968
|
Issue9670: Back out changeset b0d2b696da19; test fails on other platforms
and on OS X with pydebug.
|
2011-04-09 14:59:30 -07:00 |
|
Ned Deily
|
4e6aba6f63
|
Issue9670: Merge backout from 3.2.
|
2011-04-09 14:58:04 -07:00 |
|
Ned Deily
|
2604e33f30
|
Issue9670: Merge backout to 3.2.
|
2011-04-09 14:53:47 -07:00 |
|
Ned Deily
|
45e47e58ed
|
Issue9670: Back out changeset 378b40d71175; test fails on other platforms
and on OS X with pydebug.
|
2011-04-09 14:50:59 -07:00 |
|
Antoine Pitrou
|
131a6414dd
|
Issue #11757: select.select() now raises ValueError when a negative timeout
is passed (previously, a select.error with EINVAL would be raised). Patch
by Charles-François Natali.
|
2011-04-09 23:49:58 +02:00 |
|
Raymond Hettinger
|
c6a726d061
|
Replace constant tuple with constant set.
|
2011-04-09 13:00:17 -07:00 |
|
Ned Deily
|
6e678b4395
|
Issue #9670: merge with current
|
2011-04-09 12:47:12 -07:00 |
|
Ned Deily
|
15012a67d2
|
Issue #9670: merge with 3.2
|
2011-04-09 12:37:55 -07:00 |
|
Ned Deily
|
517ac72b00
|
Issue #9670: Increase the default stack size for secondary threads on
Mac OS X and FreeBSD to reduce the chances of a crash instead of a
"maximum recursion depth" RuntimeError exception.
(Patch by Ronald Oussoren)
|
2011-04-09 12:32:12 -07:00 |
|
Ned Deily
|
e427f0f432
|
Issue #9670: Increase the default stack size for secondary threads on
Mac OS X and FreeBSD to reduce the chances of a crash instead of a
"maximum recursion depth" RuntimeError exception.
(Patch by Ronald Oussoren)
|
2011-04-09 12:29:58 -07:00 |
|
Ross Lagerwall
|
fe2f1ad5b5
|
Issue #11719: Fix message about unexpected test_msilib skip.
Patch by Nadeem Vawda.
|
2011-04-09 20:39:50 +02:00 |
|
Ross Lagerwall
|
b2a290c329
|
Merge with 3.2
|
2011-04-09 20:12:43 +02:00 |
|
Ross Lagerwall
|
226580e6dc
|
Merge with 3.1
|
2011-04-09 20:05:04 +02:00 |
|
Ross Lagerwall
|
e620d10701
|
Issue #11719: Fix message about unexpected test_msilib skip.
Patch by Nadeem Vawda.
|
2011-04-09 19:30:03 +02:00 |
|