- 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 10 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.
-
Brett Cannon yazdı
Without this flag, the coverage test will hold up the status of the pull request.
-
Matthias Bussonnier yazdı
-
- 14 Şub, 2017 8 kayıt (commit)
-
-
Maximilian Hils yazdı
IPPROTO_IPV6 is already defined further above in the same way.
-
David Wilemski yazdı
"appears to not work in all cases" does not inspire confidence in this module. I can find no context for what bug this was referencing so it should be removed.
-
Mark Dickinson yazdı
-
Andrew Nester yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Closes python/core-workflow#14
-
Berker Peksag yazdı
-
Zachary Ware yazdı
These include spelling/grammar fixes, removing some outdated prose, updating some superseded prose, and adding/cleaning up some links. Also rewraps the entire file at 79 columns.
-
- 13 Şub, 2017 6 kayıt (commit)
-
-
Ivan Levkivskyi yazdı
various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number
-
Ned Batchelder yazdı
* Add a paragraph at the top for users, not builders, of Python. * Use nicer rst url syntax to avoid borking paragraphs in the plain text.
-
Victor Stinner yazdı
Badges are small images which gives the status of the Travis CI and the coverage percentage of Codecode. It helps to check the status of the Travis CI and to get the link to Travis CI. See also https://shields.io/
-
Victor Stinner yazdı
Currently, http://buildbot.python.org/all/buildslaves/ware-docs buildbot is only run as post-commit. For example, bpo-29521 (PR#41) introduced two warnings, unnotified by the Travis CI docs job. Modify the docs job to run toosl/rstlint.py. Fix also the two minor warnings which causes the buildbot slave to fail.
-
Jim DeLaHunt yazdı
Much of bpo-29521 was fixed in parallel with commit e7ffb99f . This cleans up the rest. Apply parallel change to Doc/make.bat to read "set SPHINXOPTS=-D latex_elements.papersize=" I don't have a Windows system on which to observe the warning, but it should be necessary. The warning: .../workspace/cpython_github/Doc/faq/windows.rst:303: WARNING: unknown option: -t In the Windows FAQ, `How do I keep editors from inserting tabs into my Python source?`, contained a reference to a Python -t option. In Python 2.x, this caused Python to issue warnings about lines with mixed spaces and tabs, but as of Python 3.6 it does nothing. Per discussion at http://bugs.python.org/issue29387, take their wording. Python [3] raises an IndentationError or TabError. Tabnanny is now a module.
-
Zachary Ware yazdı
-
- 12 Şub, 2017 7 kayıt (commit)
-
-
Victor Stinner yazdı
Set name to "_curses.window" instead of "_curses.curses window" (with a space!?).
-
Mariatta yazdı
* bpo-28929: Link the documentation to its source file on GitHub Change the documentation's `Show Source` link on the left menu to GitHub source file. * change version to master
-
Victor Stinner yazdı
* Move all functions to call objects in a new Objects/call.c file. * Rename fast_function() to _PyFunction_FastCallKeywords(). * Copy null_error() from Objects/abstract.c * Inline type_error() in call.c to not have to copy it, it was only called once. * Export _PyEval_EvalCodeWithName() since it is now called from call.c.
-
Mariatta yazdı
There were some grammatical errors in weakref.WeakValueDictionary documentation.
-
Nathaniel J. Smith yazdı
It took me quite a bit to figure out what this was referring to, since the given issue number is wrong, and the original commit message I found through git blame lists a different, also wrong issue number... see https://bugs.python.org/issue27122#msg279449
-
INADA Naoki yazdı
-
- 11 Şub, 2017 4 kayıt (commit)
-
-
Ryan Gonzalez yazdı
* Fix some deprecation warnings in Doc/conf.py * Fix an rst error in Misc/NEWS
-
Zachary Ware yazdı
-
Victor Stinner yazdı
Update also the Release Schedule to Python 3.7.
-
Donald Stufft yazdı
If the IRC notification is stored in plaintext, then anyone who forks the repository and also adds it to travis will send notifications to the IRC channel for their fork by default. Since the secure variable is encrypted using a repository specific key, this will only work when it is being built using the correct repository.
-