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
*
#20135: move FAQ about mutable default arguments to the programming FAQs page.
Ezio Melotti
2014-07-06
2
-56/+56
*
Fix guidance for subclassing collections.Set()
Raymond Hettinger
2014-07-02
1
-1/+1
*
Issue #14097: Backport 796d1371605d and subsequent changes.
Zachary Ware
2014-07-01
1
-289/+267
*
Fix typo pointed out by Dmitry Chaplinsky on docs@.
Berker Peksag
2014-06-28
1
-1/+1
*
Issue #21875: Remove vestigial references to Classic Mac OS in os module docs.
Ned Deily
2014-06-27
1
-9/+2
*
Issue #19897: Use python as executable instead of python3.
Berker Peksag
2014-06-26
1
-2/+2
*
Closes #20872: dbm/gdbm/ndbm close methods are not documented
Jesus Cea
2014-06-25
4
-0/+29
*
Fixed typo in documentation.
Vinay Sajip
2014-06-25
1
-1/+1
*
Issue #11974: Add tutorial section on class and instance variables
Raymond Hettinger
2014-06-24
1
-0/+71
*
clarify that islink only really works if python knows about symlinks (closes ...
Benjamin Peterson
2014-06-23
1
-1/+1
*
issue 20091 - index entry for __main__ in runpy docs.
Senthil Kumaran
2014-06-20
1
-0/+6
*
#21690: fix a couple of links in the docs of the re module. Noticed by Julia...
Ezio Melotti
2014-06-19
1
-2/+2
*
Fix typo reported by Jesse W on docs@
Zachary Ware
2014-06-16
1
-1/+2
*
Closes #21759: URL Typo in Documentation FAQ
Jesus Cea
2014-06-16
1
-1/+1
*
Issue #19362: Tweek len() doc and docstring to expand the indicated range of
Terry Jan Reedy
2014-06-16
1
-1/+2
*
clarify when the list of subdirectories is read (closes #13779)
Benjamin Peterson
2014-06-16
1
-3/+5
*
document IOBase.__del__'s behavior (closes #21764)
Benjamin Peterson
2014-06-15
1
-0/+6
*
#5904: Add sentence about the encoding of strftime's result.
R David Murray
2014-06-13
1
-1/+3
*
Issue #21726: Remove unnecessary and contextually wrong line.
Terry Jan Reedy
2014-06-13
1
-3/+0
*
#21693 - Fix the broken link for pylons project.
Senthil Kumaran
2014-06-11
1
-1/+1
*
#20903: clarify what happens when an smtp connection timeout occurs.
R David Murray
2014-06-09
1
-2/+4
*
document TokenError and unclosed expression behavior (closes #12063)
Benjamin Peterson
2014-06-08
1
-0/+18
*
specify that getuid() returns the real uid (closes #10503)
Benjamin Peterson
2014-06-07
1
-1/+1
*
document the compress_level argument to tarfile.open (closes #21404)
Benjamin Peterson
2014-06-07
1
-0/+4
*
Updates to Python 2.7 What's New preamble
Nick Coghlan
2014-06-07
1
-39/+133
*
#21653: fix doc for return type of sqlite3.Row.keys().
R David Murray
2014-06-05
1
-1/+1
*
Update references to Python docs in the sidebar index.
Senthil Kumaran
2014-06-03
1
-16/+16
*
Issue 21533: Dicts take iterables, not iterators. Patch by Wolfgang Maier.
Terry Jan Reedy
2014-06-03
1
-2/+2
*
Updated logging HOWTO section on optimization.
Vinay Sajip
2014-06-01
1
-0/+14
*
backport hashlib.pbkdf2_hmac per PEP 466 (closes #21304)
Benjamin Peterson
2014-05-31
1
-0/+40
*
give the correct fixer name (closes #21604)
Benjamin Peterson
2014-05-31
1
-1/+1
*
Issue #21593: (from StackOverflow) minor doc clarification for re.search.
Terry Jan Reedy
2014-05-30
1
-1/+1
*
Issue #21608: Updated HTTPHandler documentation.
Vinay Sajip
2014-05-30
1
-3/+17
*
Issue 21575: Show list.sort() arguments in the tutorial.
Raymond Hettinger
2014-05-27
1
-2/+3
*
remove list of example incompatibilities (closes #21434)
Benjamin Peterson
2014-05-26
1
-12/+3
*
fix typo in variable name (closes #21586)
Benjamin Peterson
2014-05-26
1
-1/+1
*
allow doc archives to be built for versions in the rc stage
Benjamin Peterson
2014-05-24
1
-2/+3
*
Issue #21545: Add .pop example and tweak comment about pure mutation methods.
Terry Jan Reedy
2014-05-23
1
-0/+9
*
Issue 21479: Fix markup for the TarFile.open() classmethod.
Raymond Hettinger
2014-05-23
1
-1/+1
*
Issue 21198: Minor tarfile documentation bug.
Raymond Hettinger
2014-05-22
1
-1/+1
*
Don't grow strings by concatenation. Use ''.join() instead.
Raymond Hettinger
2014-05-18
1
-5/+7
*
Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword supp...
Victor Stinner
2014-05-14
1
-6/+8
*
#21347: use string not list in shell=True example.
R David Murray
2014-05-14
1
-1/+1
*
backport hmac.compare_digest to partially implement PEP 466 (closes #21306)
Benjamin Peterson
2014-05-11
1
-0/+33
*
remove confusing delete indexing (closes #21466)
Benjamin Peterson
2014-05-11
1
-2/+0
*
Add prompts to interactive example.
Zachary Ware
2014-05-06
1
-8/+8
*
Issue #21366: Document the fact that ``return`` in a ``finally`` clause
Zachary Ware
2014-05-06
1
-0/+14
*
Issue #19630 Emphasise that the file parameter to marshal.dump must be a real...
Tim Golden
2014-04-29
1
-2/+3
*
Closes #21055: Index (augmented) assignment symbols.
Terry Jan Reedy
2014-04-29
1
-0/+13
*
Closes 21048: Index 'as' in import and with statements.
Terry Jan Reedy
2014-04-29
2
-1/+4
[next]