- 20 Feb, 2017 1 commit
-
-
Vinay Sajip authored
* 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 Feb, 2017 3 commits
-
-
INADA Naoki authored
-
Berker Peksag authored
* Drop duplicate work 'object' in lzma docs * Fix typo in os docs: fpr -> for
-
Steve Dower authored
-
- 18 Feb, 2017 3 commits
-
-
Barry Warsaw authored
bpo-22807: Expose platform UUID generation safety information.
-
Nick Coghlan authored
``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 authored
-
- 16 Feb, 2017 5 commits
-
-
Senthil Kumaran authored
-
matejcik authored
-
Eric Appelt authored
* 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 authored
-
INADA Naoki authored
-
- 15 Feb, 2017 10 commits
-
-
Yen Chi Hsuan authored
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 authored
-
Roger authored
* 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 authored
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 authored
- 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 authored
-
Hiroki Noda authored
-
Donald Stufft authored
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 authored
Without this flag, the coverage test will hold up the status of the pull request.
-
Matthias Bussonnier authored
-
- 14 Feb, 2017 8 commits
-
-
Maximilian Hils authored
IPPROTO_IPV6 is already defined further above in the same way.
-
David Wilemski authored
"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 authored
-
Andrew Nester authored
-
Berker Peksag authored
-
Berker Peksag authored
Closes python/core-workflow#14
-
Berker Peksag authored
-
Zachary Ware authored
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 Feb, 2017 6 commits
-
-
Ivan Levkivskyi authored
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 authored
* 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 authored
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 authored
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 authored
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 authored
-
- 12 Feb, 2017 4 commits
-
-
Victor Stinner authored
Set name to "_curses.window" instead of "_curses.curses window" (with a space!?).
-
Mariatta authored
* 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 authored
* 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.
-