Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
1ca93954e17e4f6f1230306997badbda3e5c68bc
/
Doc
/
library
1ca9395
Issue #13491: Fix many errors in sqlite3 documentation
by Petri Lehtinen
· 13 years ago
ccddc47
Improve doc for atexit.register and unregister (#12297)
by Éric Araujo
· 13 years ago
7f728c1
shutil copy module reference doc fix.
by Senthil Kumaran
· 14 years ago
58f23ff
Issue #13930: Adds ability for 2to3 to write its output to a different
by Gregory P. Smith
· 14 years ago
30d94b7
Issue #13989: Document that GzipFile does not support text mode.
by Nadeem Vawda
· 14 years ago
5b14d73
Issue #9021 - Introduce copy module better. Doc changes suggested by Terry
by Senthil Kumaran
· 14 years ago
6e13f13
Fix Issue #6005: Examples in the socket library documentation use sendall,
by Senthil Kumaran
· 14 years ago
cd2a603
Branch merge
by Éric Araujo
· 14 years ago
bd249c1
Clarify note in BZ2File docs about lack of multi-stream support (issue #1625).
by Nadeem Vawda
· 14 years ago
9701eb6
Closes #13944: fix capitalization of class name.
by Georg Brandl
· 14 years ago
8f50912
Issue #1625: Document BZ2File's lack of support for multi-stream inputs.
by Nadeem Vawda
· 14 years ago
f51ebf9
threading primitives now have timeouts
by Benjamin Peterson
· 14 years ago
9713321
Document absoluteness of sys.executable
by Petri Lehtinen
· 14 years ago
090ec3c
merge. again.
by Brian Curtin
· 14 years ago
10dda6e
Add a hint that CSD == Service Pack.
by Brian Curtin
· 14 years ago
fc3ba6b
Add usage note
by Raymond Hettinger
· 14 years ago
c875d20
Fix #13900: resolve self-referential description of a parameter.
by Georg Brandl
· 14 years ago
871b9d1
note that get() is not affected by default_factory (closes #13887)
by Benjamin Peterson
· 14 years ago
9f6b02e
Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL.
by Antoine Pitrou
· 14 years ago
65992c1
- Issue #13840: Fix ctypes.create_string_buffer exception message and docs.
by Meador Inge
· 14 years ago
6c89a79
#13852: some small doc fixes.
by Georg Brandl
· 14 years ago
b4b0b35
kill extra word
by Benjamin Peterson
· 14 years ago
e9fca25
say bitwise (because I have no idea what a bit-string is)
by Benjamin Peterson
· 14 years ago
5311c1d
Issue #13772: In os.symlink() under Windows, do not try to guess the link
by Antoine Pitrou
· 14 years ago
3b65fd7
#13816: fix two minor style issues. Thanks to Justin Wehnes for the patch.
by Georg Brandl
· 14 years ago
f49d152
Issue #12922: fix the TextIOBase documentation to include a description of seek() and tell() methods.
by Antoine Pitrou
· 14 years ago
41b2404
fix typo; thanks to Justin Watt from docs@
by Sandro Tosi
· 14 years ago
da8e11a
Issue #13605: more meaningful example + fixes
by Sandro Tosi
· 14 years ago
16bd0b4
Issue #13605: add documentation for nargs=argparse.REMAINDER
by Sandro Tosi
· 14 years ago
972cfb9
Issue #2134: Clarify token.OP handling rationale in tokenize documentation.
by Meador Inge
· 14 years ago
f2fbb9c
Improve interlinking of archiving/compression modules docs.
by Éric Araujo
· 14 years ago
6f7aa00
Document json.dump ensure_ascii parameter (#13770)
by Éric Araujo
· 14 years ago
01b34af
#13715: fix typo in unicodedata doc. Patch by Eli Collins.
by Ezio Melotti
· 14 years ago
9ecb6be
#13695: fix a couple of typos in the doc.
by Ezio Melotti
· 14 years ago
c1f079f
Mention the additional way to use the lvl parameter and when it changed.
by Gregory P. Smith
· 14 years ago
a931463
#13730 grammar fix
by Terry Jan Reedy
· 14 years ago
a3d1e2e
#11633 At least 2 people prefer earlier revision.
by Terry Jan Reedy
· 14 years ago
889a510
Issue #13724: improve documentation for socket.create_connection.
by Antoine Pitrou
· 14 years ago
e247928
Closes #11633 Clarify print buffering.
by Terry Jan Reedy
· 14 years ago
f4ec3c5
#13754 String returned if less than *or equal to* x 3
by Terry Jan Reedy
· 14 years ago
19d85c2
Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ variable case does not matter.
by Senthil Kumaran
· 14 years ago
ac8bfca
Issue #13747: fix SSL compatibility table.
by Antoine Pitrou
· 14 years ago
84a2edc
Issue #13747: fix documentation error about the default SSL version.
by Antoine Pitrou
· 14 years ago
ded0348
Issue #13502: threading: Fix a race condition in Event.wait() that made it
by Charles-François Natali
· 14 years ago
b52e7a9
clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@
by Sandro Tosi
· 14 years ago
441ae04
Update printout of SSL certificate examples for 3.2+.
by Antoine Pitrou
· 14 years ago
ba232df
Issue #11984: remove reference to parser, it's not showing symbol usage anymore
by Sandro Tosi
· 14 years ago
98492a5
Issue #10772: add count and help argparse action; patch by Marc Sibson
by Sandro Tosi
· 14 years ago
b7ffed8
Add a subsection explaning cipher selection.
by Antoine Pitrou
· 14 years ago
753b79c
Issue #6031: improve serve_forever() description
by Sandro Tosi
· 14 years ago
ea320ab
Issue #9349: add argparse.SUPPRESS to help doc
by Sandro Tosi
· 14 years ago
da785fd
Issue #13690: add re.DEBUG; patch by Filip Gruszczyński
by Sandro Tosi
· 14 years ago
1abde36
fix some broken URLs
by Sandro Tosi
· 14 years ago
d08effe
Some formatting & grammar fixes for the multiprocessing doc
by Eli Bendersky
· 14 years ago
a6c4a10
indicate msg is an argument
by Benjamin Peterson
· 14 years ago
79ed84c
use booleans
by Benjamin Peterson
· 14 years ago
7386662
use list() to wrap range() in itertools.permutations() example; thanks to Romain MORLEVAT from docs@
by Sandro Tosi
· 14 years ago
3e6c814
fix "Title underline too short" sphinx warning
by Sandro Tosi
· 14 years ago
2b373b0
use double-quote char instead of unicode ones; thanks to tomo cocoa from docs@
by Sandro Tosi
· 14 years ago
44f568c
fix to sent/send typo
by Sandro Tosi
· 14 years ago
1526ad1
fix Constuctor/Constructor typo; thanks to Anthon van der Neut from docs@
by Sandro Tosi
· 14 years ago
baf30da
remove spurious dot from string formatting example; thanks to Anthon van der Neut from docs@
by Sandro Tosi
· 14 years ago
0b7e536
correct syslog.openlog() argument name to logoption; thanks to Arnaud Gomes-do-Vale from docs@
by Sandro Tosi
· 14 years ago
ac007ba
Issue #13632: Update token documentation to reflect actual token types
by Meador Inge
· 14 years ago
016c6d5
Issue12798 - Update mimetypes documentation. Correct the doc section where
by Senthil Kumaran
· 14 years ago
0f1e3ac
note the blinding speed of these functions
by Benjamin Peterson
· 14 years ago
1c92cfe
don't mention implementation detail
by Benjamin Peterson
· 14 years ago
80a61e8
#13387: rephrase unclear sentence.
by Ezio Melotti
· 14 years ago
e83f899
Issue #13530: Document os.lseek() result
by Victor Stinner
· 14 years ago
e5b2ac8
#13613: fix example in re doc.
by Ezio Melotti
· 14 years ago
7158e06
Issue #13597: Improve documentation of standard streams.
by Antoine Pitrou
· 14 years ago
0c6cbbd
Fix doc typo.
by Lars Gustäbel
· 14 years ago
c1bd489
Issue #13527: remove mention of Python megawidgets and Tkinter3000 WCK
by Antoine Pitrou
· 14 years ago
5dd95d6
Mention PySide in the "other GUIs" page.
by Antoine Pitrou
· 14 years ago
7462e87
Mention the new GTK+ 3 bindings.
by Antoine Pitrou
· 14 years ago
777bebb
Issue #13513: IOBase docs incorrectly link to the readline module
by Meador Inge
· 14 years ago
c1f26f6
#13494: s/cast/convert/. Also add a link.
by Ezio Melotti
· 14 years ago
b1b3fd2
#13499: fix example adding >>> before the comments.
by Ezio Melotti
· 14 years ago
c4d7d8c
Mark up constants in sockets docs as such
by Éric Araujo
· 14 years ago
2bddc53
Fix typo (#13467)
by Éric Araujo
· 14 years ago
fd9ebd4
Clarify concatenation behaviour of immutable strings, and remove explicit
by Antoine Pitrou
· 14 years ago
287f246
Closes #13459: Clarified documentation on Logger.propagate. Thanks to Mike Fogel for the patch.
by Vinay Sajip
· 14 years ago
3b1acf1
bytes() can't be used to get a representation of an object.
by Amaury Forgeot d'Arc
· 14 years ago
b1e58fe
Issue #12245: Document sys.float_info.rounds better.
by Mark Dickinson
· 14 years ago
fabf027
#13387: add note about checking the exact type in assertIsInstance doc.
by Ezio Melotti
· 14 years ago
e62aad3
#13426: fix typos in pickle doc.
by Ezio Melotti
· 14 years ago
eeae149
fixing typos in optparse doc
by Eli Bendersky
· 14 years ago
d44af82
Issue #12767: documenting threading.Condition.notify
by Eli Bendersky
· 14 years ago
599d76b
Reformat paragraphs.
by Florent Xicluna
· 14 years ago
45c6c3e
Few typos in the documentation.
by Florent Xicluna
· 14 years ago
a7795db
Issue #13191: typo in argparse docs
by Eli Bendersky
· 14 years ago
c2c8960
Issue #13365: correct an error in the documentation of str.expandtabs
by Eli Bendersky
· 14 years ago
32e4a58
Issue #13237: Fix formatting error - the legacy shell commands weren't meant to be under the Notes heading
by Nick Coghlan
· 14 years ago
69ce0d8
Issue #13237: Remove duplicate data value descriptions from the subprocess docs
by Nick Coghlan
· 14 years ago
c29248f
Issue #13237: Forward port subprocess module updates and explicitly document UTF-8 encoding assumption when universal_newlines=True
by Nick Coghlan
· 14 years ago
06c42a3
Document that shutil.make_archive does not typecheck its logger argument
by Éric Araujo
· 14 years ago
395ca72
Issue #3067: Enhance the documentation and docstring of locale.setlocale()
by Petri Lehtinen
· 14 years ago
9c2f42f
Branch merge
by Éric Araujo
· 14 years ago
a083823
Avoid relying on the default reST role in logging library doc
by Éric Araujo
· 14 years ago
2662133
Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a
by Victor Stinner
· 14 years ago
Next »