Serhiy Storchaka
56a6d855e2
Removed duplicated words in in comments and docs.
11 years ago
Serhiy Storchaka
22a309a434
Issue #21032 : Deprecated the use of re.LOCALE flag with str patterns or
re.ASCII. It was newer worked.
11 years ago
Benjamin Peterson
b7138e24e3
context is keyword-only
11 years ago
Benjamin Peterson
c1da3d1ed8
add context parameter to xmlrpclib.ServerProxy ( #22960 )
Patch by Alex Gaynor.
11 years ago
Berker Peksag
bb44fe0a0b
Issue #22389 : Add contextlib.redirect_stderr().
11 years ago
Victor Stinner
e7182979d6
Closes #22348 : Rephrase asyncio.StreamWriter.drain() documentation
Patch written by Martin Richard.
11 years ago
Victor Stinner
1deee54e0c
asyncio doc: reformat event loop policy doc
11 years ago
Victor Stinner
8464c24c82
asyncio doc: explain how to pass keywords to callbacks (functools.partial)
11 years ago
Serhiy Storchaka
7a6915e17d
Issue #21514 : The documentation of the json module now refers to new JSON RFC
7159 instead of obsoleted RFC 4627.
11 years ago
Zachary Ware
4847035458
pydoc: Add a note about setting PAGER to affect console output pagination.
Suggested by James Lowden on docs@.
11 years ago
Ethan Furman
b004943e9b
(3.4) Issue22780: reword NotImplemented docs to emphasise should
11 years ago
Zachary Ware
61aebca09d
pydoc: Remove mention of '-g' command line option, document its removal.
11 years ago
Benjamin Peterson
33f8f15bdd
add readline.append_history_file ( closes #22940 )
patch by "bru"
11 years ago
Berker Peksag
87f6c2212e
Issue #19676 : Tweak documentation a bit.
* Updated version info to 3.5
* Fixed a markup error
* Added a versionadded directive to namereplace_errors documentation
11 years ago
Serhiy Storchaka
166ebc4e5d
Issue #19676 : Added the "namereplace" error handler.
11 years ago
Berker Peksag
c8c64e30e8
Issue #20351 : Add examples for csv.DictReader and csv.DictWriter.
Patch by Charles-Axel Dein.
11 years ago
Benjamin Peterson
a90e92dac8
update versionchanged
11 years ago
Benjamin Peterson
43052a14c1
add context parameter to HTTPHandler ( closes #22788 )
11 years ago
Benjamin Peterson
dbd4bcfcca
correct versionchanged version
11 years ago
Benjamin Peterson
7243b574e5
don't require OpenSSL SNI to pass hostname to ssl functions ( #22921 )
Patch by Donald Stufft.
11 years ago
Benjamin Peterson
378e15d7ab
document that cadefault does nothing now
11 years ago
Raymond Hettinger
828d932a2c
PEP 479: Don't let StopIteration bubble out of calls to next() inside a generator.
11 years ago
Brett Cannon
b6e2556d8f
Issue #22834 : Have import suppress FileNotFoundError when the current
working directory no longer exists.
Thanks to Martin Panter for the bug report.
11 years ago
Serhiy Storchaka
df4518ca4b
Issue #22453 : Removed non-documented macro PyObject_REPR().
11 years ago
Nick Coghlan
c216c48699
Close #19494 : add urrlib.request.HTTPBasicPriorAuthHandler
This auth handler adds the Authorization header to the first
HTTP request rather than waiting for a HTTP 401 Unauthorized
response from the server as the default HTTPBasicAuthHandler
does.
This allows working with websites like https://api.github.com which do
not follow the strict interpretation of RFC, but more the dicta in the
end of section 2 of RFC 2617:
> A client MAY preemptively send the corresponding Authorization
> header with requests for resources in that space without receipt
> of another challenge from the server. Similarly, when a client
> sends a request to a proxy, it may reuse a userid and password in
> the Proxy-Authorization header field without receiving another
> challenge from the proxy server. See section 4 for security
> considerations associated with Basic authentication.
Patch by Matej Cepl.
11 years ago
Serhiy Storchaka
f751a9e6a2
Issue #22845 : Improved formatting of dis documentation.
11 years ago
Berker Peksag
4900877bca
Issue #22839 : Fix Snapshot.statistics() link.
11 years ago
Serhiy Storchaka
ad446d57a9
Issue #22578 : Added attributes to the re.error class.
11 years ago
Berker Peksag
39e4c4d873
Issue #21650 : Add an `--sort-keys` option to json.tool CLI.
11 years ago
Raymond Hettinger
ffd842e1d6
Issue #22824 : Updated reprlib output format for sets to use set literals.
11 years ago
Raymond Hettinger
86e9b6b164
Issue 22830: Clarify docs for functools.cmp_to_key().
11 years ago
Raymond Hettinger
df1b699447
Issue #22823 : Use set literals instead of creating a set from a list
11 years ago
Berker Peksag
eb1a3cd4ea
Issue #22695 : Fix rendering of the deprecated-removed role in HTML.
11 years ago
Berker Peksag
b556399fb5
Issue #22808 : Link to the correct time method in BaseEventLoop.call_at().
Patch by Mark Grandi.
11 years ago
Brett Cannon
d0c4ef175b
Issue #22242 : Try to make some import-related loader details clearer.
Thanks to Jon Poler for pointing this out.
11 years ago
Raymond Hettinger
dc69e03ef3
Issue 22803: Add missing versionadded directive.
11 years ago
Georg Brandl
b9b389efed
Closes #22525 : clarify documentation for ast.literal_eval().
11 years ago
Robert Collins
bf2bda3c97
Close #22457 : Honour load_tests in the start_dir of discovery.
We were not honouring load_tests in a package/__init__.py when that was the
start_dir parameter, though we do when it is a child package. The fix required
a little care since it introduces the possibility of infinite recursion.
11 years ago
Benjamin Peterson
4a358de34e
context has been backported so fix versionchanged
11 years ago
Benjamin Peterson
4ffb075271
PEP 476: enable HTTPS certificate verification by default ( #22417 )
Patch by Alex Gaynor with some modifications by me.
11 years ago
Benjamin Peterson
a5c9c37dd5
wrap
11 years ago
R David Murray
64f10d4f5e
Reflow paragraph.
11 years ago
R David Murray
3ca68e77b8
Fix English phrasing.
11 years ago
Serhiy Storchaka
e5cf4868d3
Issue #22388 : Unified the style of "Contributed by" sentences in What's New.
11 years ago
Ethan Furman
8be6fac103
standardize Enum docs by referring to 'special methods' instead of __dunder__ methods
11 years ago
Berker Peksag
8f791d358b
Issue #6623 : Remove deprecated Netrc class in the ftplib module.
Patch by Matt Chaput.
11 years ago
Ethan Furman
8906f14a68
issue22780: update NotImplemented description
11 years ago
Georg Brandl
36ac510956
Closes #22771 : "verbose" is unused; deprecate it.
11 years ago
Georg Brandl
a4c8c47961
#22613 : remaining corrections in extending/reference docs (thanks Jacques Ducasse)
11 years ago
Georg Brandl
8ed75cd8e9
#22613 : minor other fixes in library docs (thanks Jacques Ducasse)
11 years ago