Giampaolo Rodola'
|
d9f38bc704
|
asynchat speedup improvement: avoid to use a function mimicking old buffer() builtin behavior; instead use plain slicing
|
2012-08-04 14:38:16 +02:00 |
Victor Stinner
|
a0e3febe5a
|
Null merge (fix already applied to the default branch)
|
2012-08-04 01:38:16 +02:00 |
Victor Stinner
|
90ef747e04
|
Close #13119: use "\r\n" newline for sys.stdout/err on Windows
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
|
2012-08-04 01:37:32 +02:00 |
Victor Stinner
|
7b3f0fa68e
|
Close #13119: use "\r\n" newline for sys.stdout/err on Windows
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
|
2012-08-04 01:28:00 +02:00 |
Victor Stinner
|
d1f9352bd4
|
(Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n'
doesn't translate newlines on output.
|
2012-08-04 01:22:07 +02:00 |
Victor Stinner
|
401e17d0f0
|
open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't
translate newlines on output.
|
2012-08-04 01:18:56 +02:00 |
Antoine Pitrou
|
3c25dfbf13
|
Make TextIOWrapper's documentation clearer by copying the newline argument's description from open().
|
2012-08-04 00:56:19 +02:00 |
Antoine Pitrou
|
0c1c0d42dc
|
Make TextIOWrapper's documentation clearer by copying the newline argument's description from open().
|
2012-08-04 00:55:38 +02:00 |
Jesus Cea
|
ba9b404b65
|
MERGE: #15512: Remove remnants of debugging code
|
2012-08-03 15:49:40 +02:00 |
Jesus Cea
|
676e73b3fb
|
#15512: Remove remnants of debugging code
|
2012-08-03 15:49:14 +02:00 |
Jesus Cea
|
1659b75189
|
MERGE: Closes #15469: Correct __sizeof__ support for deque
|
2012-08-03 14:52:12 +02:00 |
Jesus Cea
|
16e2fca47e
|
Closes #15469: Correct __sizeof__ support for deque
|
2012-08-03 14:49:42 +02:00 |
Jesus Cea
|
88ca04e6a8
|
MERGE: Closes #15512: Correct __sizeof__ support for parser
|
2012-08-03 14:29:26 +02:00 |
Jesus Cea
|
e9c5318967
|
Closes #15512: Correct __sizeof__ support for parser
|
2012-08-03 14:28:37 +02:00 |
Jesus Cea
|
5323173dee
|
Closes #15514: Correct __sizeof__ support for cpu_set
|
2012-08-03 14:18:11 +02:00 |
Brett Cannon
|
077ef45a74
|
Update the What's New details for importlib based on doc/ABC changes.
|
2012-08-02 17:50:06 -04:00 |
Brett Cannon
|
773468f3a9
|
Ditch the 'self' argument in importlib docs since it's implied.
|
2012-08-02 17:35:34 -04:00 |
Victor Stinner
|
b3f5501250
|
Close #15534: Fix a typo in the fast search function of the string library (_s => s)
Replace _s with ptr to avoid future confusion. Add also non regression tests.
|
2012-08-02 23:05:01 +02:00 |
Antoine Pitrou
|
77821b68a7
|
Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
Patch by Philipp Hagemeister.
|
2012-08-02 20:39:10 +02:00 |
Antoine Pitrou
|
a9a53c7dc0
|
Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
Patch by Philipp Hagemeister.
|
2012-08-02 20:37:12 +02:00 |
Nick Coghlan
|
4941774f59
|
Issue #15502: Bring the importlib.PathFinder docs and docstring more in line with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue
|
2012-08-02 23:03:58 +10:00 |
Nick Coghlan
|
e3376ef6d2
|
Clarify the import statement semantics, especially for implicit imports in the 'from X import Y' variant
|
2012-08-02 22:02:35 +10:00 |
Nick Coghlan
|
ff79486bb5
|
Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow
|
2012-08-02 21:45:24 +10:00 |
Nick Coghlan
|
8a9080feff
|
Issue #15502: Bring the importlib ABCs into line with the current state of the import protocols given PEP 420. Original patch by Eric Snow.
|
2012-08-02 21:26:03 +10:00 |
Eli Bendersky
|
f37c0c73fe
|
Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py
|
2012-08-02 02:56:39 +03:00 |
Victor Stinner
|
a90f311d05
|
Cleanup findnocoding.py and pysource.py scripts (with infile/infile.close)
|
2012-08-02 00:05:41 +02:00 |
Victor Stinner
|
98516a6930
|
Fix findnocoding.p and pysource.py scripts
I suppose that these scripts didn't work since Python 3.0.
|
2012-08-01 20:12:51 +02:00 |
Victor Stinner
|
7c7ea62e6c
|
Issue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows
if the bytes filenames cannot be encoded from the file system (ANSI) code page
|
2012-08-01 20:03:49 +02:00 |
Victor Stinner
|
53386d8f20
|
Issue #15463: Write a test for faulthandler truncating the name of functions
to 500 characters.
|
2012-08-01 19:45:34 +02:00 |
Victor Stinner
|
98a387b65f
|
Fix the user signal handler of faulthandler
Don't exit the tstate is NULL to restore the errno and chain the signal handler
if needed.
|
2012-08-01 19:36:36 +02:00 |
Richard Oudkerk
|
b303580c7c
|
Issue #15525: Increase timeout when TerminateProcess() fails
|
2012-08-01 17:44:18 +01:00 |
Antoine Pitrou
|
c86e8d9c17
|
Improve wording for __hash__
|
2012-08-01 14:53:22 +02:00 |
Antoine Pitrou
|
0209dc1ff6
|
Clarify that hash randomization is on by default
|
2012-08-01 14:53:16 +02:00 |
Martin v. Löwis
|
a562ed012d
|
Issue #8847: Merge with 3.2
|
2012-08-01 11:09:55 +02:00 |
Martin v. Löwis
|
d49b323270
|
Issue #8847: Disable COMDAT folding in Windows PGO builds.
Patch by Stefan Krah.
|
2012-08-01 11:06:53 +02:00 |
Martin v. Löwis
|
4c1730db7c
|
Issue #8847: Disable COMDAT folding in Windows PGO builds.
Analysis by Victor Stinner. Patch by Stefan Krah.
|
2012-08-01 10:32:11 +02:00 |
Benjamin Peterson
|
b685d19eb3
|
merge heads
|
2012-07-31 21:50:11 -07:00 |
Benjamin Peterson
|
481ae50ccd
|
construct fields in the right order (closes #15517)
Patch from Taihyun Hwang.
|
2012-07-31 21:41:56 -07:00 |
Jesus Cea
|
c9aa321a01
|
Closes #15499: Sleep is hardcoded in webbrowser.UnixBrowser
|
2012-08-01 03:57:52 +02:00 |
Barry Warsaw
|
0efcf99c9e
|
abc fixes.
|
2012-07-31 17:52:32 -04:00 |
Barry Warsaw
|
38f75cbc00
|
Typo.
|
2012-07-31 16:39:43 -04:00 |
Barry Warsaw
|
dbdc3db534
|
- Issue #15295: Reorganize and rewrite the documentation on the import system.
|
2012-07-31 16:10:12 -04:00 |
Barry Warsaw
|
9a5af1288d
|
merge
|
2012-07-31 16:03:25 -04:00 |
Barry Warsaw
|
dadebab42c
|
Finally, a coherent set of terminology for all the lil' beasties involved.
|
2012-07-31 16:03:09 -04:00 |
Andrew Svetlov
|
233f6845b3
|
Issue #9803: Don't close IDLE on saving if breakpoint is open.
Patch by Roger Serwy.
|
2012-07-31 19:49:38 +03:00 |
Andrew Svetlov
|
06c5c6d694
|
Issue #9803: Don't close IDLE on saving if breakpoint is open.
Patch by Roger Serwy.
|
2012-07-31 19:48:00 +03:00 |
Eli Bendersky
|
dfd72bbc4d
|
Issue #14814: fix some typos in howto/ipaddress.rst
|
2012-07-31 17:25:33 +03:00 |
Eli Bendersky
|
0e49749f31
|
Issue #14814: reorganize ipaddress documentation and document all attributes of IPv[46]Address objects
|
2012-07-31 17:23:11 +03:00 |
Nick Coghlan
|
336d9ac6bd
|
Issue #15425: Don't rely on the assumption that the current working directory is on sys.path (this will hopefully appease the XP buildbots)
|
2012-07-31 21:39:42 +10:00 |
Nick Coghlan
|
42c0766a53
|
Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise
|
2012-07-31 21:14:18 +10:00 |