- 28 Ara, 2017 1 kayıt (commit)
-
-
Miss Islington (bot) yazdı
In pydoc.py, the reference to Python' documentation was in http. The link has been updated to use https. (cherry picked from commit e5681b98)
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 14 Haz, 2016 2 kayıt (commit)
-
-
doko@ubuntu.com yazdı
one set by the env var PAGER).
-
doko@ubuntu.com yazdı
one set by the env var PAGER).
-
- 12 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 03 Haz, 2016 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Sean Rodman, test by Kaushik N.
-
- 11 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
to format short Python version.
-
- 06 Kas, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
Implementation by Antoine Pitrou.
-
- 19 Agu, 2015 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 03 May, 2015 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 21 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 13 Nis, 2015 1 kayıt (commit)
-
-
Brett Cannon yazdı
The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
-
- 30 Mar, 2015 1 kayıt (commit)
-
-
R David Murray yazdı
The previous patch only dealt with KeyboardInterrupt when all of the data had been consumed by the pager. This deals with the interrupt when some data is still pending.
-
- 29 Mar, 2015 1 kayıt (commit)
-
-
R David Murray yazdı
Previously, if you hit ctl-c while the pager was active, the python that launched the subprocess for the pager would see the KeyboardInterrupt in the __exit__ method of the subprocess context manager where it was waiting for the subprocess to complete, ending the wait. This would leave the pager running, while the interactive interpreter, after handling the exception by printing it, would go back to trying to post a prompt...but the pager would generally have the terminal in raw mode, and in any case would be still trying to read from stdin. On some systems, even exiting python at that point would not restore the terminal mode. The problem with raw mode could also happen if ctl-C was hit when pydoc was called from the shell command line and the pager was active. Instead, we now wait on the subprocess in a loop, ignoring KeyboardInterrupt just like the pager does, until the pager actually exits. (Note: this was a regression relative to python2...in python2 the pager is called via system, and system does not return until the pager exits.)
-
- 04 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 28 Şub, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence.
-
- 20 Şub, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
differs from file system encoding (e.g. on Mac OS).
-
- 17 Şub, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch by Yuyang Guo and Berker Peksag.
-
- 27 Kas, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 17 Kas, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 30 Eyl, 2014 2 kayıt (commit)
-
-
Georg Brandl yazdı
Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore.
-
Georg Brandl yazdı
Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore.
-
- 17 Eyl, 2014 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
- 25 Tem, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
class name instead of hardcoded one.
-
- 10 Tem, 2014 1 kayıt (commit)
-
-
Zachary Ware yazdı
-
- 08 Haz, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Original patch by Amaury Forgeot d'Arc with a test by bdettmer.
-
- 07 Haz, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch by Víctor Terrón.
-
- 30 May, 2014 1 kayıt (commit)
-
-
Brett Cannon yazdı
Along the way, dismantle importlib._bootstrap._SpecMethods as it was no longer relevant and constructing the new function required partially dismantling the class anyway.
-
- 25 May, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
The 'File objects' section was removed in Python 3. Patch by Claudiu Popa.
-
- 13 May, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
contains characters not encodable to the stdout encoding.
-
- 19 Nis, 2014 1 kayıt (commit)
-
-
R David Murray yazdı
-
- 17 Eyl, 2014 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 20 Mar, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 21 Şub, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
for bound methods. Previous to this change, it displayed "self" for methods implemented in Python but not methods implemented in C; it is now both internally consistent and consistent with inspect.Signature.
-
- 19 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 21 Şub, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
for bound methods. Previous to this change, it displayed "self" for methods implemented in Python but not methods implemented in C; it is now both internally consistent and consistent with inspect.Signature.
-
- 24 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
PyMethodDescr_Type, _PyMethodWrapper_Type, and PyWrapperDescr_Type) have been modified to provide introspection information for builtins. Also: many additional Lib, test suite, and Argument Clinic fixes.
-
- 07 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 05 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
Also add missing tests to test_pydoc.
-
- 23 Kas, 2013 1 kayıt (commit)
-
-
Larry Hastings yazdı
for some builtins.
-