index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add link from email summary entry to entry in changed module section.
R David Murray
2013-12-20
1
-1/+4
*
Add links to discussion of multiprocessing spawn/forkserver feature.
R David Murray
2013-12-20
2
-9/+14
*
Tidy up ssl whatsnew references, make ssl section formatting consistent.
R David Murray
2013-12-20
2
-14/+13
*
Add link from pickle protocol 4 in summary to the section about it.
R David Murray
2013-12-20
1
-1/+3
*
Include sha3 addition in hashlib section of whatsnew.
R David Murray
2013-12-20
2
-2/+10
*
No need for single para descriptions to have separate contributed by para.
R David Murray
2013-12-20
1
-14/+0
*
whatsnew: s/no new syntax features planned/no new syntax features added/
R David Murray
2013-12-20
1
-1/+1
*
Fix spelling error in single dispatch whatsnew summary, and add link.
R David Murray
2013-12-20
1
-1/+4
*
Make the 'PEP 446' string link to the PEP in whatsnew new feature description.
R David Murray
2013-12-20
1
-2/+2
*
Move versionadded for tracemalloc into the standard location (right after title)
R David Murray
2013-12-20
1
-2/+2
*
Move versionadded for ensurepip into the standard location (right after title)
R David Murray
2013-12-20
1
-2/+2
*
Fix Sphinx markup for asyncio modules so :mod:`asyncio` links work.
R David Murray
2013-12-20
4
-3/+4
*
Add versionadded to enum docs.
R David Murray
2013-12-20
1
-0/+2
*
Add email package to whatsnew list of significantly improved stdlib modules.
R David Murray
2013-12-20
1
-0/+3
*
Closes #19902: Merged update from 3.3.
Vinay Sajip
2013-12-19
1
-0/+32
|
\
|
*
Issue #19902: Added list of logging levels.
Vinay Sajip
2013-12-19
1
-0/+32
*
|
Closes #20005: Fix typo in operator docs. Patch by Claudiu Popa.
Zachary Ware
2013-12-18
1
-1/+1
|
\
\
|
|
/
|
*
Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa.
Zachary Ware
2013-12-18
1
-1/+1
*
|
Close #19946: use runpy as needed in multiprocessing
Nick Coghlan
2013-12-17
1
-3/+12
*
|
Issue #19713: Fix mistakes in the import page of language reference.
Eric Snow
2013-12-17
1
-102/+118
*
|
Issue #19713: Update importlib docs for module spec changes, including deprec...
Eric Snow
2013-12-17
2
-22/+154
*
|
Issue #20001: Add the SVG source of the pathlib-inheritance diagram to Hg
Eli Bendersky
2013-12-17
1
-0/+4
*
|
Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does ...
Victor Stinner
2013-12-16
1
-4/+0
*
|
Issue #18283: shutil.which() now supports bytes argument, not only text argum...
Victor Stinner
2013-12-16
1
-0/+4
*
|
Mention specific exceptions instead of OSError where appropriate.
Antoine Pitrou
2013-12-16
1
-3/+4
*
|
Issue #19921: When Path.mkdir() is called with parents=True, any missing pare...
Antoine Pitrou
2013-12-16
1
-1/+4
*
|
Issue #19700: set __spec__ appropriately in runpy
Nick Coghlan
2013-12-15
1
-28/+41
*
|
#19970: fix additional typo in 3.4 asyncio docs.
R David Murray
2013-12-14
1
-1/+1
*
|
#19981: merge with 3.3.
Ezio Melotti
2013-12-14
1
-2/+2
|
\
\
|
|
/
|
*
#19981: fix typo in email.mailbox docs. Patch by Claudiu Popa.
Ezio Melotti
2013-12-14
1
-2/+2
*
|
merge for issue #19963
Brett Cannon
2013-12-13
1
-2/+5
|
\
\
|
|
/
|
*
Issue #19963: Document that importlib.import_module() will import
Brett Cannon
2013-12-13
1
-2/+5
*
|
Merge: #18036: update .pyc FAQ entry in light of PEP 3147.
R David Murray
2013-12-13
1
-18/+27
|
\
\
|
|
/
|
*
#18036: update .pyc FAQ entry in light of PEP 3147.
R David Murray
2013-12-13
1
-18/+27
*
|
Issue #14432: Document the removal of the PyFrameObject.f_tstate field
Victor Stinner
2013-12-13
1
-10/+20
*
|
asyncio doc: explain where does the task come from.
Victor Stinner
2013-12-13
1
-4/+6
*
|
asyncio doc: change style of the sequence diagram to focus on the control flow
Victor Stinner
2013-12-13
2
-0/+0
*
|
asyncio: remove references to the Tulip project, rename Tulip to asyncio.
Victor Stinner
2013-12-13
2
-1/+6
*
|
Backout changeset 46393019b650
Victor Stinner
2013-12-13
1
-5/+0
*
|
Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3,
Victor Stinner
2013-12-13
1
-0/+5
*
|
Add a sequence diagram for the chained coroutines example
Victor Stinner
2013-12-12
3
-1/+10
*
|
#19063: fix set_payload handling of non-ASCII string input.
R David Murray
2013-12-11
1
-1/+7
*
|
Issue #18864: Add a setter for ModuleSpec.has_location.
Eric Snow
2013-12-11
1
-1/+1
*
|
Issue #19407: merge PPUG notes from 3.3
Nick Coghlan
2013-12-10
3
-5/+32
|
\
\
|
|
/
|
*
Issue #19407: add Python Packaging User Guide notes
Nick Coghlan
2013-12-10
3
-5/+32
*
|
asyncio doc: simplify task example
Victor Stinner
2013-12-10
1
-4/+4
*
|
asyncio doc: don't document Task.cancel(), already documented in Future.cancel()
Victor Stinner
2013-12-10
1
-4/+0
*
|
asyncio: document Task.current_task()
Victor Stinner
2013-12-10
1
-0/+8
*
|
asyncio: don't document private functions
Victor Stinner
2013-12-10
1
-8/+0
*
|
asyncio: fix 2nd task example
Victor Stinner
2013-12-10
1
-16/+16
[next]