- 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 5 kayıt (commit)
-
-
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.
-
- 22 Ock, 2016 8 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
In a previous change, __spec__.parent was prioritized over __package__. That is a backwards-compatibility break, but we do eventually want __spec__ to be the ground truth for module details. So this change reverts the change in semantics and instead raises an ImportWarning when __package__ != __spec__.parent to give people time to adjust to using spec objects.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #25907: Use {% trans %} tags in HTML templates to ease the translation of the documentation. The tag comes from Jinja templating system, used by Sphinx. Patch written by Julien Palard.
-
Victor Stinner yazdı
-