Marco Buttu
e65fcde85a
bpo-27200: Fix several doctests (GH-604)
9 years ago
csabella
c6db4811f9
bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271)
Builtin container types have two potential link targets in the docs:
- their entry in the list of builtin callables
- their type documentation
This change brings `bytes` and `bytearray` into line with other
container types by having cross-references default to linking to
their type documentation, rather than their builtin callable entry.
9 years ago
Joshua Diaddigo
873ef20d00
Fix a typo in Doc/library/functions.rst (GH-1117)
Replace `For object's ... ` with `For objects ...`
9 years ago
Berker Peksag
61b9ac9371
bpo-29791: Clarify that flush is keyword-only argument ( #1093 )
Reported by Lucio Ricardo Montero Valenzuela.
9 years ago
csabella
85deefcf61
bpo-29677: DOC: clarify documentation for `round` (GH-877)
9 years ago
Gerrit Holl
6003db7db5
bpo-29677: DOC: clarify documentation for `round` ( #357 )
* DOC: clarify documentation for `round`
Clarified that `round` can take a negative value for *ndigits*.
* DOC: remove trailing whitespace in previous commit
remove trailing whitespace in previous commit
9 years ago
NAKAMURA Osamu
29540cdf6c
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802)
9 years ago
Serhiy Storchaka
c7b1a0bbe2
Issue #28763 : Use double hyphens (rendered as en-dashes) in numerical ranges
in the documentation.
10 years ago
Martin Panter
357ed2e577
Change double hyphens (en dashes) to em (longer) dashes
10 years ago
Brett Cannon
a721abac29
Issue #26331 : Implement the parsing part of PEP 515.
Thanks to Georg Brandl for the patch.
10 years ago
Raymond Hettinger
871a3340b7
Issue 27936: Update doc for round() to indicate that None is an allowable argument.
10 years ago
Steve Dower
3929499914
Issue #1602 : Windows console doesn't input or print Unicode (PEP 528)
Closes #17602 : Adds a readline implementation for the Windows console
10 years ago
Brett Cannon
6fa7aada9b
Issue #26027 , #27524 : Document the support for path-like objects in os and os.path.
This completes PEP 519.
10 years ago
Berker Peksag
3f015a64b8
Issue #27157 : Make only type() itself accept the one-argument form
Patch by Eryk Sun and Emanuel Barry.
10 years ago
Berker Peksag
37e87e6ec1
Issue #26547 : Remove outdated term dictproxy from vars() documentation
dictproxy was used in Python 2 and it was renamed to mappingproxy
in Python 3.3.
Patch by Julien.
10 years ago
Martin Panter
bae5d81f5d
Issue #24314 : Fix doc links for general attributes like __name__, __dict__
10 years ago
Brett Cannon
b08388d5f2
Issue #27182 : Document os.PathLike.
Part of PEP 519.
10 years ago
Ethan Furman
d62548afed
issue27186: add open/io.open; patch by Jelle Zijlstra
10 years ago
R David Murray
dd4fcf52f4
#26829 : Clarify that namespace is copied to a new __dict__ in instance creation.
Patch by Emily Morehouse.
10 years ago
Berker Peksag
2c57da0e48
Add a versionchanged directive to document addition of the new 'namereplace' error handler.
Reported by Robert on docs@p.o.
10 years ago
Terry Jan Reedy
01a9a958b6
Issue #26525 : Change chr example to match change in ord example.
10 years ago
Terry Jan Reedy
063d48d9c0
Issue #26525 : Change ord example from nu to more easily recognized Euro sign.
10 years ago
Georg Brandl
5d94134040
Closes #25910 : fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.
10 years ago
Berker Peksag
0334c3c735
Issue #26401 : Fix compile() documentation
After 25032ec29315, compile() will raise a ValueError
if source contains null bytes.
Patch by SilentGhost.
10 years ago
Senthil Kumaran
d03d1d45f5
Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.
11 years ago
Martin Panter
7462b64911
Issue #25523 : Correct "a" article to "an" article
This changes the main documentation, doc strings, source code comments, and a
couple error messages in the test suite. In some cases the word was removed
or edited some other way to fix the grammar.
11 years ago
Terry Jan Reedy
68b6874f59
Issue #25432 : Explain isinstance behaviour when type is a tuple.
11 years ago
Terry Jan Reedy
43cba219d5
Make expression legal python by adding '1'.
11 years ago
Raymond Hettinger
29655df11d
Issue #24064 : Docuement that oroperty docstrings are now writeable.
11 years ago
Raymond Hettinger
0907a45eb1
Issue #23695 : Explain the zip() example for clustering a data series into n-length groups.
11 years ago
Steve Dower
cb39d1f466
Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky Kok.
11 years ago
Victor Stinner
708d9ba5a2
Issue #23618 : Document EINTR changes in socket documentation
11 years ago
Victor Stinner
a766ddfa2f
Issue #23648 : Document the PEP 475 in the "Porting to Python 3.5" section and
add a version changed note in modified functions.
11 years ago
Benjamin Peterson
b365a06a84
change Σ to ν for obscure joke reasons
https://twitter.com/ncoghlan_dev/status/579173053793353728
11 years ago
Serhiy Storchaka
07985ef387
Issue #22286 : The "backslashreplace" error handlers now works with
decoding and translating.
12 years ago
Serhiy Storchaka
d3faf43f9b
Issue #23181 : More "codepoint" -> "code point".
12 years ago
Georg Brandl
3be472b5f7
Closes #23181 : codepoint -> code point
12 years ago
Nick Coghlan
b9fdb7a452
Issue 19548: update codecs module documentation
- clarified the distinction between text encodings and other codecs
- clarified relationship with builtin open and the io module
- consolidated documentation of error handlers into one section
- clarified type constraints of some behaviours
- added tests for some of the new statements in the docs
12 years ago
Serhiy Storchaka
166ebc4e5d
Issue #19676 : Added the "namereplace" error handler.
12 years ago
Georg Brandl
e4196d3f2e
#22613 : fix several factual errors in builtin docs (thanks Jacques Ducasse)
12 years ago
Georg Brandl
e73778c1ac
Use https:// URLs when referring to python.org hosts.
12 years ago
Ezio Melotti
9b1e92f5a1
#22237 : document that sorted() is guaranteed to be stable. Initial patch by Martin Panter.
12 years ago
Victor Stinner
c803bd84b5
Issue #22695 : Fix syntax of open() doc
12 years ago
Robert Collins
933430ab69
Issue #17401 : document closefd in io.FileIO docs and add to repr
closefd was documented in the open docs but not the matching FileIO
class documented. Further, closefd, part of the core state for the
object was not shown.
In review it was noted that the open docs are a little confusing about
the interaction between closefd and paths, so tweaked them at the same
time.
12 years ago
Georg Brandl
eb7e8f607e
Document builtin classes as such, not functions.
12 years ago
Terry Jan Reedy
1895f2b544
Issue 22492: Be explicit that print does not support binary mode files.
Original patch by Georg Brandl.
12 years ago
Benjamin Peterson
7809569a2e
sigma actually works in latex...
12 years ago
Benjamin Peterson
7df46aaf32
try to pick a unicode char that latex understands
12 years ago
Benjamin Peterson
5fb161f170
a more universal unicode char example
12 years ago
Nick Coghlan
eed671910f
Clarify ord() and chr() documentation
12 years ago