Stefan Krah
|
6d554b0428
|
Merge 3.3.
|
2013-01-16 13:00:11 +01:00 |
|
Stefan Krah
|
59a4a93f43
|
Issue #16422: Use strings for rounding mode constants for better readability
and pickling compatibility.
|
2013-01-16 12:58:59 +01:00 |
|
Richard Oudkerk
|
ad1d5f908a
|
Issue #10527: Use poll() instead of select() for multiprocessing pipes
|
2013-01-15 01:01:01 +00:00 |
|
Serhiy Storchaka
|
7898043868
|
Issue #15989: Fix several occurrences of integer overflow
when result of PyLong_AsLong() narrowed to int without checks.
|
2013-01-15 01:12:17 +02:00 |
|
Eli Bendersky
|
a50ff1887d
|
Issue #16922: fixed findtext() to return empty Unicode string instead of empty bytes object when there's no text.
Patch by Serhiy Storchaka.
|
2013-01-13 05:26:31 -08:00 |
|
Eli Bendersky
|
25771b3749
|
Issue #16922: fixed findtext() to return empty Unicode string instead of empty bytes object when there's no text.
Patch by Serhiy Storchaka.
|
2013-01-13 05:26:07 -08:00 |
|
Eli Bendersky
|
b09b167419
|
Issue #16922: fixed findtext() to return empty Unicode string instead of empty bytes object when there's no text.
Patch by Serhiy Storchaka.
|
2013-01-13 05:22:05 -08:00 |
|
Eli Bendersky
|
3ed84421ef
|
Clean trailing whitespace in _elementtree.c
|
2013-01-13 05:15:52 -08:00 |
|
Eli Bendersky
|
4583990143
|
Clean trailing whitespace in _elementtree.c
|
2013-01-13 05:14:47 -08:00 |
|
Benjamin Peterson
|
fa3965ab76
|
merge 3.3
|
2013-01-12 21:22:33 -05:00 |
|
Benjamin Peterson
|
0e5c48a917
|
make deque_clear void, since it's infallible
|
2013-01-12 21:22:18 -05:00 |
|
Antoine Pitrou
|
1e37e9efa9
|
SSLContext.load_dh_params() now properly closes the input file.
|
2013-01-12 21:44:33 +01:00 |
|
Antoine Pitrou
|
457a2292ca
|
SSLContext.load_dh_params() now properly closes the input file.
|
2013-01-12 21:43:45 +01:00 |
|
Eli Bendersky
|
60a0c71031
|
Issue #16076: check for return value of PyTuple_New for args (following
Coverity report) and cleanup code.
|
2013-01-12 05:43:08 -08:00 |
|
Eli Bendersky
|
799e3edaf7
|
Issue #16076: check for return value of PyTuple_New for args (following
Coverity report) and cleanup code.
|
2013-01-12 05:42:38 -08:00 |
|
Eli Bendersky
|
0f3735b8f0
|
Close #16076: fix refleak in pickling of Element.
Thanks to Ezio Melotti and Daniel Shahaf for the patch.
|
2013-01-12 05:21:06 -08:00 |
|
Eli Bendersky
|
b8f6dc855c
|
Issue #16076: fix refleak in pickling of Element.
Thanks to Ezio Melotti and Daniel Shahaf for the patch.
|
2013-01-12 05:20:16 -08:00 |
|
Charles-François Natali
|
a6ebb2d7fb
|
Issue #16876: Revert be8e6b81284e, which wasn't thread-safe: wait until a
solution is found for poll().
|
2013-01-12 12:31:00 +01:00 |
|
Raymond Hettinger
|
464d89b3ce
|
Issue #16398: Optimize deque.rotate()
|
2013-01-11 22:29:50 -08:00 |
|
Eli Bendersky
|
bb48151c8c
|
Issue #16913: Fix Element.itertext()'s handling of text with XML entities.
Patch by Serhiy Storchaka
|
2013-01-10 06:31:05 -08:00 |
|
Eli Bendersky
|
e6174ca85e
|
Issue #16913: Fix Element.itertext()'s handling of text with XML entities.
Patch by Serhiy Storchaka
|
2013-01-10 06:27:53 -08:00 |
|
Eli Bendersky
|
065eeb1085
|
Issue #16076: make _elementtree.Element pickle-able in a way that is compatible
with the Python version of the class.
Patch by Daniel Shahaf.
|
2013-01-10 06:06:01 -08:00 |
|
Eli Bendersky
|
698bdb2a6c
|
Issue #16076: make _elementtree.Element pickle-able in a way that is compatible
with the Python version of the class.
Patch by Daniel Shahaf.
|
2013-01-10 06:01:06 -08:00 |
|
Charles-François Natali
|
f424f3856d
|
Issue #16876: Optimize epoll.poll() by keeping a per-instance epoll events
buffer instead of allocating a new one at each poll().
|
2013-01-09 19:00:26 +01:00 |
|
Victor Stinner
|
2716d531a1
|
fcntl: add F_DUPFD_CLOEXEC constant, available on Linux 2.6.24+.
|
2013-01-08 00:52:40 +01:00 |
|
Serhiy Storchaka
|
c99b5120a7
|
Issue #15972: Fix error messages when os functions expecting a file name or
file descriptor receive the incorrect type.
|
2013-01-07 23:16:49 +02:00 |
|
Serhiy Storchaka
|
a2ad5c3ad1
|
Issue #15972: Fix error messages when os functions expecting a file name or
file descriptor receive the incorrect type.
|
2013-01-07 23:13:46 +02:00 |
|
Antoine Pitrou
|
5dd12a5978
|
Fix returning uninitialized variable (issue #8109).
Found by Christian with Coverity.
|
2013-01-06 15:25:36 +01:00 |
|
Antoine Pitrou
|
58ddc9d743
|
Issue #8109: The ssl module now has support for server-side SNI, thanks to a :meth:SSLContext.set_servername_callback method.
Patch by Daniel Black.
|
2013-01-05 21:20:29 +01:00 |
|
Eli Bendersky
|
3c9850aad7
|
The get() and iter() are now able to accept keyword arguments.
In conformance with the documentation and the Python version.
Patch by Franck Michea.
|
2013-01-05 06:31:36 -08:00 |
|
Eli Bendersky
|
a873690d2c
|
The get() and iter() are now able to accept keyword arguments.
In conformance with the documentation and the Python version.
Patch by Franck Michea.
|
2013-01-05 06:26:39 -08:00 |
|
Serhiy Storchaka
|
d8a0bac8f7
|
Issue #16674: random.getrandbits() is now 20-40% faster for small integers.
|
2013-01-04 12:18:35 +02:00 |
|
Christian Heimes
|
75e923fcf2
|
Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in
non-pydebug builds. Several extension modules now compile cleanly when
assert()s are enabled in standard builds (-DDEBUG flag).
|
2013-01-03 09:22:41 +01:00 |
|
Christian Heimes
|
f402e922f3
|
Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in
non-pydebug builds. Several extension modules now compile cleanly when
assert()s are enabled in standard builds (-DDEBUG flag).
|
2013-01-03 09:21:55 +01:00 |
|
Ezio Melotti
|
37623ab5f1
|
#16009: JSON error messages now provide more information. Patch by Serhiy Storchaka.
|
2013-01-03 08:44:15 +02:00 |
|
Victor Stinner
|
fd53a5a011
|
(Merge 3.3) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB.
|
2013-01-03 03:38:38 +01:00 |
|
Victor Stinner
|
6f84659e5e
|
(Merge 3.2) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB.
|
2013-01-03 03:37:47 +01:00 |
|
Victor Stinner
|
c44057dfbd
|
Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB
|
2013-01-03 03:33:21 +01:00 |
|
Nadeem Vawda
|
ef408aea3d
|
Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and bz2.BZ2Compressor.compress(b'').
Initial patch by Martin Packman.
|
2013-01-02 23:13:53 +01:00 |
|
Nadeem Vawda
|
57cb81d161
|
Issue #16828: Fix error incorrectly raised by bz2.compress('').
Initial patch by Martin Packman.
|
2013-01-02 23:05:56 +01:00 |
|
Nadeem Vawda
|
638fb9bbed
|
Issue #16828: Fix error incorrectly raised by bz2.compress('').
Patch by Martin Packman.
|
2013-01-02 23:02:00 +01:00 |
|
Serhiy Storchaka
|
404fa924c3
|
Issue #16841: Set st_dev on Windows as unsigned long to match its DWORD type.
|
2013-01-02 18:22:23 +02:00 |
|
Victor Stinner
|
e4110dc11f
|
Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding
with the surrogateescape error handler, instead of UTF-8 in strict mode.
|
2013-01-01 23:05:55 +01:00 |
|
Brian Curtin
|
9cc4321bf5
|
Backed out changeset 61bada808b34
|
2013-01-01 12:31:06 -06:00 |
|
Brian Curtin
|
e3d0b65118
|
Set st_dev on Windows as unsigned long to match its DWORD type, related to the change to fix #11939.
|
2013-01-01 12:21:35 -06:00 |
|
Richard Oudkerk
|
950fab07aa
|
Issue #9586: Merge.
|
2013-01-01 17:40:58 +00:00 |
|
Richard Oudkerk
|
9b4599322d
|
Issue #9586: Merge
|
2013-01-01 17:36:53 +00:00 |
|
Richard Oudkerk
|
9866231eab
|
Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy.
|
2013-01-01 17:29:44 +00:00 |
|
Eli Bendersky
|
a9bc1bf93b
|
Make indentation consistent
|
2013-01-01 07:42:06 -08:00 |
|
Eli Bendersky
|
b829dea0cd
|
Make indentation consistent
|
2013-01-01 07:41:51 -08:00 |
|