- 28 Ock, 2016 7 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Issue #25234: Skip test_eintr.test_open() under OS X to avoid hanging * Issue #25868: Try to make test_eintr.test_sigwaitinfo() more reliable especially on slow buildbots. Use a pipe to synchronize the parent and the child processes.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #26227: On Windows, getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the socket module now decode the hostname from the ANSI code page rather than UTF-8.
-
Berker Peksag yazdı
-
- 29 Ock, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
Also add some more tests. Based on patch by Sye van der Veen.
-
- 28 Ock, 2016 6 kayıt (commit)
-
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Most of the docs has already been updated in c3c188a0325a.
-
Berker Peksag yazdı
Most of the docs has already been updated in c3c188a0325a.
-
Berker Peksag yazdı
Patch by Raphael Das Gupta.
-
- 29 Ock, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 28 Ock, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Raphael Das Gupta.
-
- 27 Ock, 2016 6 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
Augment htest to include all major IOBinding functions.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #26217: resize_compact() must set wstr_length to 0 after freeing the wstr string. Otherwise, an assertion fails in _PyUnicode_CheckConsistency().
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 26 Ock, 2016 6 kayıt (commit)
-
-
Victor Stinner yazdı
Mention the name of the invalid type in error message of AST validation for constants. Suggestion made by Joseph Jevnik on a review.
-
Victor Stinner yazdı
obj2ast_constant() code is baesd on obj2ast_object() which has a special case for Py_None. But in practice, we don't need to have a special case for constants. Issue noticed by Joseph Jevnik on a review.
-
Victor Stinner yazdı
Issue #26146.
-
Raymond Hettinger yazdı
-
Senthil Kumaran yazdı
Remove unnecessary test case comment in urllib.parse.py. These are asserted as test cases.
-
Senthil Kumaran yazdı
-
- 25 Ock, 2016 3 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26146: Add a new kind of AST node: ast.Constant. It can be used by external AST optimizers, but the compiler does not emit directly such node. An optimizer can replace the following AST nodes with ast.Constant: * ast.NameConstant: None, False, True * ast.Num: int, float, complex * ast.Str: str * ast.Bytes: bytes * ast.Tuple if items are constants too: tuple * frozenset Update code to accept ast.Constant instead of ast.Num and/or ast.Str: * compiler * docstrings * ast.literal_eval() * Tools/parser/unparse.py
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 24 Ock, 2016 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
and better generated code (on both GCC and CLang).
-
Raymond Hettinger yazdı
and for better code generation.
-
Raymond Hettinger yazdı
* Add comment to the maxlen structure entry about the meaning of maxlen == -1 * Factor-out code common to deque_append(left) and deque_extend(left) * Factor inner-loop in deque_clear() to use only 1 test per loop instead of 2 * Tighten inner-loops for deque_item() and deque_ass_item() so that the compiler can combine the decrement and test into a single step.
-
- 23 Ock, 2016 4 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Write one import per line * Sort imports by name * Add an empty line: 2 empty lines between code blocks at the module level (PEP 8)
-
Victor Stinner yazdı
-
Brett Cannon yazdı
with no known parent package. Previously SystemError was raised if the parent package didn't exist (e.g., __package__ was set to ''). Thanks to Florent Xicluna and Yongzhi Pan for reporting the issue.
-