Meador Inge
|
31b798d3c8
|
Issue #12618: py_compile cannot create files in current directory
Initial patch by Sjoerd de Vries.
|
2011-11-28 09:34:47 -06:00 |
Meador Inge
|
22b9b37915
|
Issue #12618: py_compile cannot create files in current directory
Initial patch by Sjoerd de Vries.
|
2011-11-28 09:27:32 -06:00 |
Victor Stinner
|
d1b097f884
|
Issue #13415: test_curses skips unencodable characters
|
2011-11-28 07:26:19 +01:00 |
Charles-François Natali
|
eee0e44164
|
Null merge.
|
2011-11-27 12:50:15 +01:00 |
Charles-François Natali
|
7be8f68d37
|
Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.
|
2011-11-27 12:49:27 +01:00 |
Charles-François Natali
|
9cbe9c5b17
|
Null merge.
|
2011-11-27 12:42:30 +01:00 |
Charles-François Natali
|
6613c18ea2
|
Issue #13415: Test in configure if unsetenv() has a return value or not.
|
2011-11-27 12:41:06 +01:00 |
Jesus Cea
|
66f412e4dc
|
MERGE: Closes issue #13488: Some old preprocessors have problem with #define not in the first column
|
2011-11-27 05:17:14 +01:00 |
Jesus Cea
|
6d47db31f0
|
Closes issue #13488: Some old preprocessors have problem with #define not in the first column
|
2011-11-27 05:16:22 +01:00 |
Victor Stinner
|
756c6ecdc4
|
Issue #13415: Help to locate curses.h when _curses module is linked to ncursesw
|
2011-11-27 00:19:53 +01:00 |
Antoine Pitrou
|
5604ef3e36
|
Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error.
This also adds a test for issue #5319, whose resolution introduced the issue.
|
2011-11-26 22:02:29 +01:00 |
Antoine Pitrou
|
d7c8fbf89e
|
Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error.
This also adds a test for issue #5319, whose resolution introduced the issue.
|
2011-11-26 21:59:36 +01:00 |
Meador Inge
|
59ff2c5640
|
Issue #12618: fix py_compile unit tests to handle different drives on Windows
|
2011-11-26 11:39:49 -06:00 |
Meador Inge
|
fb36b3f6a0
|
Issue #12618: fix py_compile unit tests to handle different drives on Windows
|
2011-11-26 11:37:02 -06:00 |
Giampaolo Rodola'
|
6a5dcd4b2a
|
sched.py: fix test_queue by making sure that queue property returns an orderd list of upcoming events
|
2011-11-26 12:17:42 +01:00 |
Charles-François Natali
|
2966f10ec0
|
Issue #13415: Skip test_os.test_unset_error on FreeBSD < 7 and OS X < 10.6
(where unsetenv() doesn't return a value).
|
2011-11-26 11:32:46 +01:00 |
Meador Inge
|
261a6d7c21
|
Issue #12618: create unit tests for the py_compile module
|
2011-11-25 23:40:53 -06:00 |
Meador Inge
|
6f16660ca7
|
Issue #12618: create unit tests for the py_compile module
|
2011-11-25 23:36:48 -06:00 |
Meador Inge
|
4bc45b7a9f
|
Issue #13380: add an internal function for resetting the ctypes caches
|
2011-11-25 22:37:44 -06:00 |
Meador Inge
|
11e381310b
|
Issue #13380: add an internal function for resetting the ctypes caches
|
2011-11-25 22:33:32 -06:00 |
Antoine Pitrou
|
4d098735c6
|
Some libcs' snprintf may output a leading minus sign when %p-formatting
(should fix a failure on the OpenIndiana AMD64 buildbot)
|
2011-11-26 01:42:03 +01:00 |
Antoine Pitrou
|
c366117820
|
Merge heads
|
2011-11-26 01:13:12 +01:00 |
Antoine Pitrou
|
f0effe6379
|
Better resolution for issue #11849: Ensure that free()d memory arenas are really released
on POSIX systems supporting anonymous memory mappings. Patch by Charles-François Natali.
|
2011-11-26 01:11:02 +01:00 |
Victor Stinner
|
0fdfceb782
|
Issue #12567: The curses module uses Unicode functions for Unicode arguments
when it is linked to the ncurses library. It encodes also Unicode strings to
the locale encoding instead of UTF-8.
|
2011-11-25 22:10:02 +01:00 |
Antoine Pitrou
|
c24847658f
|
Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module.
Patch by Brian Harring.
|
2011-11-25 21:29:27 +01:00 |
Antoine Pitrou
|
4558bad7d6
|
Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module.
Patch by Brian Harring.
|
2011-11-25 21:28:15 +01:00 |
Victor Stinner
|
cad939bf9d
|
NEWS: fix the issue number for PyUnicode_EncodeDecimal change
|
2011-11-25 20:11:54 +01:00 |
Victor Stinner
|
6345be9a14
|
Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers
different than "strict" anymore. The caller was unable to compute the
size of the output buffer: it depends on the error handler.
|
2011-11-25 20:09:01 +01:00 |
Antoine Pitrou
|
e7ede06757
|
Typo
|
2011-11-25 19:11:26 +01:00 |
Antoine Pitrou
|
6bbd76b0a0
|
Update What's new for PEP 3155
|
2011-11-25 19:10:05 +01:00 |
Antoine Pitrou
|
86a36b500a
|
PEP 3155 / issue #13448: Qualified name for classes and functions.
|
2011-11-25 18:56:07 +01:00 |
Antoine Pitrou
|
0e86a5842d
|
Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size parameter, as other file-like objects.
Patch by Ryan Kelly.
|
2011-11-25 18:03:09 +01:00 |
Antoine Pitrou
|
e333d00d3a
|
Clarify concatenation behaviour of immutable strings, and remove explicit
mention of the CPython optimization hack.
|
2011-11-25 16:34:23 +01:00 |
Antoine Pitrou
|
fd9ebd4a36
|
Clarify concatenation behaviour of immutable strings, and remove explicit
mention of the CPython optimization hack.
|
2011-11-25 16:33:53 +01:00 |
Eli Bendersky
|
0481f4bca4
|
fix some typos in Doc/c-api/memoryview.rst
|
2011-11-25 15:08:45 +02:00 |
Eli Bendersky
|
5a53f368e6
|
fix some typos in Doc/c-api/memoryview.rst
|
2011-11-25 15:07:50 +02:00 |
Petri Lehtinen
|
61ea8a0d28
|
Add a "What's New" entry for #12170
|
2011-11-24 22:00:46 +02:00 |
Senthil Kumaran
|
5d036e1ccf
|
merge from 3.2 testFnNames is assigned twice.
|
2011-11-25 02:09:24 +08:00 |
Senthil Kumaran
|
f27be5c60b
|
testFnNames is assigned twice.
|
2011-11-25 02:08:39 +08:00 |
Victor Stinner
|
984890fcbb
|
Close #13415: Test in configure if unsetenv() has a return value or not.
Patch written by Charles-François Natali.
|
2011-11-24 13:53:38 +01:00 |
Benjamin Peterson
|
1518e8713d
|
and back to the "magic" formula (with a comment) it is
|
2011-11-23 10:44:52 -06:00 |
Vinay Sajip
|
d2b0217944
|
Merged documentation addition from 3.2.
|
2011-11-23 14:29:01 +00:00 |
Vinay Sajip
|
631a7e23c5
|
Added a configuration dictionary example to the logging cookbook.
|
2011-11-23 14:27:54 +00:00 |
Vinay Sajip
|
ce378d1945
|
Closes #13459: Merged fix from 3.2.
|
2011-11-23 08:55:59 +00:00 |
Vinay Sajip
|
287f24691d
|
Closes #13459: Clarified documentation on Logger.propagate. Thanks to Mike Fogel for the patch.
|
2011-11-23 08:54:22 +00:00 |
Benjamin Peterson
|
759345ff8d
|
merge 3.2 (null)
|
2011-11-22 23:57:50 -06:00 |
Benjamin Peterson
|
06403cff16
|
decref correct object
|
2011-11-22 23:57:23 -06:00 |
Benjamin Peterson
|
e8eb0e82f3
|
merge 3.2
|
2011-11-22 23:14:47 -06:00 |
Benjamin Peterson
|
4bb867d3ec
|
plug refleak
|
2011-11-22 23:12:49 -06:00 |
Benjamin Peterson
|
e0bcca510a
|
merge heads
|
2011-11-22 19:06:23 -06:00 |