- 23 Şub, 2017 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 22 Şub, 2017 6 kayıt (commit)
-
-
INADA Naoki yazdı
* bpo-29463: Add docstring field to some AST nodes. ClassDef, ModuleDef, FunctionDef, and AsyncFunctionDef has docstring field for now. It was first statement of there body. * fix document. thanks travis! * doc fixes
-
Matthias Bussonnier yazdı
bpo-29546: Improve from-import error message with location
-
Christian Heimes yazdı
sock_addr_t is used to define the minimum size of any socket address on the stack. Let's make sure that an AF_ALG address always fits. Coverity complains because in theory, AF_ALG might be larger than any of the other structs. In practice it already fits. Closes Coverity CID 1398948, 1398949, 1398950 Signed-off-by: Christian Heimes <christian@python.org>
-
Anthony Zhang yazdı
-
Matthias Bussonnier yazdı
Nick Coghlan said on bpo-28814: > inspect.getargvalues() and inspect.formatargvalues() were deprecated > in Python 3.5 as part of implementing bpo-20438 > This is incorrect, as these are *frame* introspection related functions, > not callable introspection ones. The documentation and implementation > layout is confusing though, as they're interleaved with the callable > introspection operation This commit undeprecates these functions and adds a note to ignore previous deprecation notices.
-
Xiang Zhang yazdı
-
- 21 Şub, 2017 7 kayıt (commit)
-
-
INADA Naoki yazdı
PyObject_GetAttrString intern temporary key string. It's completely redudant.
-
Matthieu Dartiailh yazdı
-
INADA Naoki yazdı
-
INADA Naoki yazdı
-
INADA Naoki yazdı
use "union" merge strategy for Misc/NEWS.
-
Jim Fasarakis-Hilliard yazdı
As of Python 3.6 **kwargs are ordered, thus, remove the paragraph stating that ordering is undefined and change snippet to remove the unecessary sorted call. * Add sentence mentioning guaranteed output order of kwargs
-
Matthias Bussonnier yazdı
Clarify that methods take a string which is interpreted as a regex, not a regex object. Also clarify what the old `-1`, `0`, `1` and `2` options were.
-
- 20 Şub, 2017 7 kayıt (commit)
-
-
Mark Dickinson yazdı
* Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry.
-
INADA Naoki yazdı
lookdict_unicode() and lookdict_unicode_nodummy() may raise exception when key is not unicode.
-
Paul Schreiber yazdı
-
Serhiy Storchaka yazdı
no longer affects a partial object after creation.
-
Xiang Zhang yazdı
-
INADA Naoki yazdı
3eea8c67 missed dot at the end of paragraph.
-
Vinay Sajip yazdı
* Fixed bpo-29565: Corrected ctypes passing of large structs by value. Added code and test to check that when a structure passed by value is large enough to need to be passed by reference, a copy of the original structure is passed. The callee updates the passed-in value, and the test verifies that the caller's copy is unchanged. A similar change was also added to the test added for bpo-20160 (that test was passing, but the changes should guard against regressions). * Reverted unintended whitespace changes.
-
- 19 Şub, 2017 3 kayıt (commit)
-
-
INADA Naoki yazdı
-
Berker Peksag yazdı
* Drop duplicate work 'object' in lzma docs * Fix typo in os docs: fpr -> for
-
Steve Dower yazdı
-
- 18 Şub, 2017 3 kayıt (commit)
-
-
Barry Warsaw yazdı
bpo-22807: Expose platform UUID generation safety information.
-
Nick Coghlan yazdı
``local.getlocale(locale.LC_CTYPE)`` and ``locale.getpreferredencoding(False)`` may give different answers in some cases (such as the ``en_IN`` locale). ``re.LOCALE`` uses the latter, so update the test case to match.
-
Nick Coghlan yazdı
-
- 16 Şub, 2017 5 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
matejcik yazdı
-
Eric Appelt yazdı
* bpo-29026: Clarity documentation of time.time Clarify the documentation of time.time by more precisely defining what is meant by "seconds since the epoch" on most platforms. Additionally explain how gmtime and localtime may be used to extract calendar components and convert to a more common date format. * bpo-29026: Minor improvements for time.time doc * bpo-29026: Consistency fixes for time.time doc
-
Matthias Bussonnier yazdı
-
INADA Naoki yazdı
-
- 15 Şub, 2017 8 kayıt (commit)
-
-
Yen Chi Hsuan yazdı
bltinmodule.c: Added in b744ba1d and no longer necessary since d64e8a75 posixmodule.c: Added in d1cd4d41 and no longer necessary since efb00c0c pythonrun.c: Added in 73d538b9 and no longer necessary since d6009517 sysmodule.c: Added in 5467d4c0 and no longer necessary since a2c17c58
-
Mariatta yazdı
-
Roger yazdı
* Reformat Doc/README.txt to Doc/README.rst * Update mention of Doc/README.rst * Update mention of README.txt to README.rst * Make line fold * rstlint ignore Doc/README.rst * conf.py ignore Doc/README.rst * Update issue tracker url in Docs/README.rst
-
Victor Stinner yazdı
rstlint.py run by "make check" doesn't support Python 2. "make venv" runs "$(PYTHON) -m venv", whereas Python 2 doens't provide the venv module: it's a module of Python 3 standard library.
-
Zachary Ware yazdı
- Return to always building the docs, it's a relatively cheap operation, the check had a bug, and the docs build depends on other files. - Add `make suspicious` - Do all three checks as one `make check suspicious html` invocation for earliest possible exit in case of issues.
-
Mariatta yazdı
-
Hiroki Noda yazdı
-
Donald Stufft yazdı
If someone pushes a branch to python/cpython and then creates a PR it will cause Travis to run tests needlessly, once for the PR and once for the push. This will limit the branches that Travis will run tests for to the `master` branch and branches that match the regex `^\d\.\d$`. This will have the effect that if someone purposely makes another branch they won't get tests to run, but in that rare case they can adjust this themselves.
-