Richard Oudkerk
9866231eab
Issue #9586 : Redefine SEM_FAILED on MacOSX to keep compiler happy.
13 years ago
Giampaolo Rodola'
5e844c8052
Fix issue 10527: make multiprocessing use poll() instead of select() if available.
13 years ago
Łukasz Langa
c7ce3f7be5
added Wolfgang Scherer to acknowledgements
13 years ago
Łukasz Langa
3a8479a583
Fixes `parser.clean()` reported in issue #16820 .
13 years ago
Łukasz Langa
3057469506
Fixes issue #15803 : incorrect `ConfigParser.items()` docstring
13 years ago
Serhiy Storchaka
88339c44f8
Issue #16645 : Fix hardlink extracting test for tarfile.
13 years ago
Andrew Svetlov
bac04e51ca
Fix docstring in curses ( #16782 )
13 years ago
Serhiy Storchaka
051722d554
Issue #16485 : Fix file descriptor not being closed if file header patching fails on closing of aifc file.
13 years ago
Antoine Pitrou
ddb87ab1b4
Forward port new test for SSLSocket.connect_ex()
13 years ago
Antoine Pitrou
40f12ab0c5
Backport Python 3.2 fix for issue #12065 , and add another test for SSLSocket.connect_ex().
13 years ago
Serhiy Storchaka
c4051aa8eb
Merge heads
13 years ago
Raymond Hettinger
c195b4e88c
Make the from_iterable() recipe more usable.
The code isn't exactly equivalent because a classmethod would
only make sense inside a chain class, and it would need "cls"
as a first argument, and it would need to return an instance
of "chain" rather than a generator.
The updated example drops the @classmethod decorator so that
it can be used standalone: list(from_iterable(['abc', 'def']))
This should be communicate what from_iterable does.
13 years ago
Serhiy Storchaka
0b386d5247
Issue #16761 : Raise TypeError when int() called with base argument only.
13 years ago
Serhiy Storchaka
cf095f8e0f
Issue #16761 : Raise TypeError when int() or long() called with base argument only.
13 years ago
Chris Jerdonek
1e4bd53a34
Issue #15324 : Fix regrtest parsing of --fromfile, --match, and --randomize.
13 years ago
Chris Jerdonek
3684c79e00
Issue #15324 : Fix regrtest parsing of --fromfile and --randomize options.
13 years ago
Ezio Melotti
52336f0b50
#16796 : fix typo. Patch by Michael Schurter.
13 years ago
Ezio Melotti
82ee30384c
#16796 : fix typo. Patch by Michael Schurter.
13 years ago
Serhiy Storchaka
c90be30b0d
Issue #16792 : Use assertIs() to test identity.
13 years ago
Serhiy Storchaka
8876145fab
Issue #16793 . Replace deprecated unittest asserts with modern counterparts.
13 years ago
Serhiy Storchaka
3b3170447f
Issue #16792 : Mark small ints test as CPython-only.
13 years ago
Serhiy Storchaka
270767b2ce
Issue #16792 : Mark small ints test as CPython-only.
13 years ago
Chris Jerdonek
6f70fe8046
Issue #16790 : add some of the recent issue #16045 int tests to test_long.
This patch also provides a simple way to share tests going forward
between test_int and test_long.
13 years ago
Brian Curtin
33e05e7905
Fix #16759 . Convert DWORD registry values using unsigned long.
When converting REG_DWORD registry values into Python, the conversion
needs to be made from an *unsigned* long (k instead of i) to match the
DWORD type.
13 years ago
Brian Curtin
9eac6b3848
Merge
13 years ago
Brian Curtin
172e42295f
Fix #16759 . Convert DWORD registry values using PyLong_FromUnsignedLong.
When converting REG_DWORD registry values into Python ints, the conversion
needs to be made from an *unsigned* long to match the DWORD type.
13 years ago
Serhiy Storchaka
a0b7e9c74c
Null merge.
13 years ago
Serhiy Storchaka
07e0e06f8a
Issue #16504 : Catch SyntaxErrors raised by tokenizer in IDLE.
Patch by Roger Serwy.
13 years ago
Serhiy Storchaka
61006a2113
Issue #16504 : Catch SyntaxErrors raised by tokenizer in IDLE.
13 years ago
Serhiy Storchaka
c8bd74ddfd
Issue #16682 : Replace "Python string" to "bytes object" in audioop documentation.
13 years ago
Brian Curtin
0e091b0365
Fix #14420 . Check for PyLong as well as PyInt when converting in Py2Reg.
This fixes a ValueError seen in winreg.SetValueEx when passed long
winreg.REG_DWORD values that should be supported by the underlying API.
13 years ago
Brian Curtin
12706f2082
Fix #14420 . Use PyLong_AsUnsignedLong to support the full range of DWORD.
This fixes an OverflowError seen in winreg.SetValueEx when passed
winreg.REG_DWORD values that should be supported by the underlying API.
13 years ago
Hynek Schlawack
4a5a4c2808
#16618 : Add more glob regression tests
Mostly about symlinks and str/unicode behavior.
Patch by Serhiy Storchaka.
13 years ago
Hynek Schlawack
e26568f812
#16618 : Make glob.glob match consistently across strings and bytes
Fixes handling of leading dots.
Patch by Serhiy Storchaka.
13 years ago
Andrew Svetlov
57a1233110
fix test for subprocess ( #16644 )
13 years ago
Jesus Cea
c73f863a8d
Closes #16789 : :meth:`quit` links to constants instead of own module
13 years ago
Jesus Cea
4947049b40
Closes #16789 : :meth:`quit` links to constants instead of own module
13 years ago
Senthil Kumaran
2f01e239cb
Issue #16702 : Skip proxies for localhost in urllib2_localnet tests
13 years ago
Chris Jerdonek
cf4710c323
Add additional links and index entries for "argument" and "parameter".
This adds to the work done for issue #15990 (i.e. f44b8d69e5fc and the
commits referenced there).
13 years ago
Kristján Valur Jónsson
36852b7844
Issue #14574 : Ignore socket errors raised when flushing a connection on close.
13 years ago
Senthil Kumaran
303eb478f2
Issue #16702 : Skip proxies for localhost in urllib2_localnet tests
13 years ago
Chris Jerdonek
b7c2386a3f
Fix Sphinx warning (missing "setting-envvars" reference).
This fixes the following warning when building the docs (probably from
the commit for issue #14901 ):
"/Doc/faq/windows.rst:138: WARNING: undefined label: setting-envvars (if the
link has no caption the label must precede a section header)"
13 years ago
Chris Jerdonek
b43099464a
Add additional links and index entries for "argument" and "parameter".
This adds to the work done for issue #15990 (i.e. f44b8d69e5fc and the
commits referenced there).
13 years ago
Kristján Valur Jónsson
b0d1c37d73
Issue #14574 : Ignore socket errors raised when flushing a connection on close.
13 years ago
Andrew Svetlov
c08ded9e4a
rename MathcObject to match object in doctrings for re module ( #16760 )
13 years ago
Andrew Svetlov
0b64c1415e
rename MathcObject to match object in doctrings for re module ( #16760 )
13 years ago
Ezio Melotti
3b65a9eeed
#16760 : use ref:`match-objects` instead of :class:`MatchObject`.
13 years ago
Ezio Melotti
090f7be6df
#16760 : use ref:`match-objects` instead of :class:`MatchObject`.
13 years ago
Ezio Melotti
4268b3a751
#16677 : rename section header and fix markup.
13 years ago
Ezio Melotti
9f929bb7df
#16677 : rename section header and fix markup.
13 years ago