Antoine Pitrou
|
b4bbee25b1
|
Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling.
Patch by Serhiy Storchaka.
|
2012-07-21 00:45:14 +02:00 |
Ned Deily
|
cc409f4ecc
|
Issue #15168: Ensure test_importlib subdirectories are installed.
|
2012-07-20 13:24:58 -07:00 |
Brett Cannon
|
ed19fcec89
|
Fix another import error.
|
2012-07-20 15:42:34 -04:00 |
Brett Cannon
|
86ae981da9
|
Fix an import from the importlib.test move.
|
2012-07-20 15:40:57 -04:00 |
Brett Cannon
|
d382bfc921
|
Move importlib.test.benchmark to Tools/importbench to make it more
visible and to place it with other micro-benchmarks (e.g.
stringbench).
|
2012-07-20 14:54:53 -04:00 |
Brett Cannon
|
45a5e3afe5
|
Issue #15168: Move importlb.test to test.test_importlib.
This should make the Linux distros happy as it is now easier to leave
importlib's tests out of their base Python distribution.
|
2012-07-20 14:48:53 -04:00 |
Brett Cannon
|
4afc1c08d0
|
Merge
|
2012-07-20 14:22:27 -04:00 |
Brett Cannon
|
6ee9695270
|
Issue #15091: Call importlib.invalidate_caches() and reactivate a test
of importing a symlinked package.
|
2012-07-20 14:22:04 -04:00 |
Brett Cannon
|
ba52586f76
|
Running the importlib tests from test_import is redundant as there is
no difference anymore between __import__ and importlib.__import__.
|
2012-07-20 14:01:34 -04:00 |
Meador Inge
|
b17ad53e39
|
Issue #15406: Fix deprecation warning in ctypes test_bitfields.py
Patch by Flávio Ribeiro.
|
2012-07-20 12:52:42 -05:00 |
Meador Inge
|
ca9652ea5d
|
Issue #15406: Fix deprecation warning in ctypes test_bitfields.py
Patch by Flávio Ribeiro.
|
2012-07-20 12:48:34 -05:00 |
Nick Coghlan
|
be7e49fd82
|
Close #15386: There was a loophole that meant importlib.machinery and imp would sometimes reference an uninitialised copy of importlib._bootstrap
|
2012-07-20 23:40:09 +10:00 |
Ronald Oussoren
|
818b1186f9
|
Add missing NEWS entry for changeset b79d276041a8
|
2012-07-20 14:41:06 +02:00 |
Andrew Svetlov
|
674d6a6972
|
Merge heads
|
2012-07-20 14:55:20 +03:00 |
Andrew Svetlov
|
a0364764fd
|
Merge 3.2
|
2012-07-20 14:52:54 +03:00 |
Andrew Svetlov
|
ddcb6206bf
|
Issue #15404: Refleak in PyMethodObject repr.
|
2012-07-20 14:51:45 +03:00 |
Stefan Krah
|
26a1c7a905
|
Fix Visual Studio warning.
|
2012-07-20 12:34:18 +02:00 |
Vinay Sajip
|
5e1658c5d7
|
Closes #15399: merged documentation fix from 3.2.
|
2012-07-20 09:51:20 +01:00 |
Vinay Sajip
|
3be7a8bbcf
|
Issue #15399: Added versionchanged for processName.
|
2012-07-20 09:50:18 +01:00 |
Meador Inge
|
8fda359095
|
Issue #15401: Fix typo in inspect.getclosurevars docstring.
|
2012-07-19 21:33:21 -05:00 |
Kristján Valur Jónsson
|
c5963d3842
|
Issue #15365: Make traceback reporting ignore any errors when printing out
the source line. Such errors can't be reported anyway. This makes error
reporting work, even if the "io" module can't be loaded.
|
2012-07-19 21:02:03 +00:00 |
Hynek Schlawack
|
26fe37dd3f
|
#1492704: Backout and wait for 3.4
|
2012-07-19 21:41:02 +02:00 |
Jesus Cea
|
024abca053
|
MERGE: Closes #15395: memory leaks in selectmodule.c
|
2012-07-19 21:32:07 +02:00 |
Jesus Cea
|
62a5c3216d
|
Closes #15395: memory leaks in selectmodule.c
|
2012-07-19 21:31:26 +02:00 |
Jesus Cea
|
3cd346ae33
|
MERGE: Closes #15396: memory leak in tkinter
|
2012-07-19 21:18:45 +02:00 |
Jesus Cea
|
ef86d12979
|
Closes #15396: memory leak in tkinter
|
2012-07-19 21:18:07 +02:00 |
Meador Inge
|
f4cc2161d5
|
Issue #15394: Fix ref leaks in PyModule_Create.
Patch by Julia Lawall.
|
2012-07-19 13:51:59 -05:00 |
Meador Inge
|
29e49d6394
|
Issue #15394: Fix ref leaks in PyModule_Create.
Patch by Julia Lawall.
|
2012-07-19 13:45:43 -05:00 |
Hynek Schlawack
|
77d3283370
|
#1492704: Make shutil.copyfile() raise a distinct SameFileError
Patch by Atsuo Ishimoto.
|
2012-07-19 20:23:49 +02:00 |
Meador Inge
|
7506dab2e8
|
Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.
|
2012-07-19 00:14:35 -05:00 |
Meador Inge
|
60c2266afe
|
Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.
|
2012-07-19 00:01:22 -05:00 |
Meador Inge
|
c958ca8f69
|
remove unused variable
|
2012-07-18 18:08:49 -05:00 |
Meador Inge
|
996ae04943
|
remove unused variable
|
2012-07-18 17:57:46 -05:00 |
Benjamin Peterson
|
51ab2830bb
|
remove unused variable
|
2012-07-18 15:12:47 -07:00 |
Meador Inge
|
9544aa38d9
|
Issue #15368: fixing variable typo.
|
2012-07-18 16:49:07 -05:00 |
Meador Inge
|
f69e24e3c6
|
Issue #15368: fixing variable typo.
|
2012-07-18 16:41:03 -05:00 |
Meador Inge
|
1f336adc8f
|
Issue #15368: make bytecode generation deterministic.
|
2012-07-18 14:28:55 -05:00 |
Meador Inge
|
2ca6315d15
|
Issue #15368: make bytecode generation deterministic.
|
2012-07-18 14:20:11 -05:00 |
Nick Coghlan
|
c5afd42df8
|
Fix importlib.machinery.all_suffixes docs
|
2012-07-18 23:59:08 +10:00 |
Nick Coghlan
|
76e077001d
|
Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo()
|
2012-07-18 23:14:57 +10:00 |
Vinay Sajip
|
90db661b43
|
Closes #15307: symlinks now work on OS X with framework Python builds. Patch by Ronald Oussoren.
|
2012-07-17 17:33:46 +01:00 |
Hynek Schlawack
|
11718620ef
|
Use posixpath.join() explicitely in posixpath.join() test
Used os.path.join before which has different semantics on Windows.
|
2012-07-17 14:29:33 +02:00 |
Hynek Schlawack
|
0b350c6b3e
|
Use posixpath.join() explicitely in posixpath.join() test
Used os.path.join before which has different semantics on Windows.
|
2012-07-17 14:28:44 +02:00 |
Eli Bendersky
|
f90fc68db4
|
fix whitespace woes
|
2012-07-17 15:09:56 +03:00 |
Eli Bendersky
|
43cc5f29a8
|
Optimize tostringlist by taking the stream class outside the function. It's now 2x faster on short calls. Related to #1767933
|
2012-07-17 15:09:12 +03:00 |
Nick Coghlan
|
9455492142
|
Issue #15314: Tweak a pkgutil test to hopefully be more Windows friendly
|
2012-07-17 21:37:58 +10:00 |
Eli Bendersky
|
b48ff7fdda
|
Merge for #14988
|
2012-07-17 14:25:14 +03:00 |
Eli Bendersky
|
ceb23316c8
|
merge heads
|
2012-07-17 14:22:01 +03:00 |
Eli Bendersky
|
66099b0cdc
|
ISsue #14988: restore Python 2's behavior of raising ImportError when unable to load pyexpat, instead of a SystemError/RuntimeError
|
2012-07-17 14:20:38 +03:00 |
Hynek Schlawack
|
1815191f17
|
#15377: Make posixpath.join() more strict when checking for str/bytes mix
Based on a patch by Nick Coghlan.
|
2012-07-17 13:10:15 +02:00 |