summaryrefslogtreecommitdiffstats
path: root/Doc/howto
Commit message (Collapse)AuthorAgeFilesLines
* Added a cookbook recipe for a logging context manager.Vinay Sajip2016-04-011-0/+102
|
* Issue #26593: Fix typo in logging HOWTOBerker Peksag2016-03-201-1/+1
| | | | Patch by Andrew Szeto.
* Suggest people use feature detection in porting guideBrett Cannon2016-03-181-0/+46
|
* Issue #24852: Remove outdated "HOWTO Use Python in the web" documentBerker Peksag2016-03-072-732/+0
|
* Fix typo.Georg Brandl2016-02-281-1/+1
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-267-32/+32
| | | | to SilentGhost for the patch.
* Added simple threading example to logging cookbook.Vinay Sajip2016-02-201-0/+55
|
* fix typo (closes #26378)Benjamin Peterson2016-02-181-1/+1
|
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-2/+2
| | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear.
* Fix userinfo example presented in urllib2 howto.Senthil Kumaran2016-02-061-1/+1
|
* Issue #26220: Remove outdated comment about a question markMartin Panter2016-01-291-3/+0
|
* #25517: fix regex in the regex howto. Patch by Elena Oat.Ezio Melotti2016-01-111-3/+4
|
* Issue #25576: Merge www-form-urlencoded doc from 3.4 into 3.5Martin Panter2015-11-241-3/+3
|\
| * Issue #25576: Remove application/x-www-form-urlencoded charset adviceMartin Panter2015-11-241-3/+3
| | | | | | | | | | No charset parameter is standardized for this Content-Type value. Also clarify that urlencode() outputs ASCII.
* | Issue #25626: Change zlib to accept Py_ssize_t and cap to UINT_MAXMartin Panter2015-11-201-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The underlying zlib library stores sizes in “unsigned int”. The corresponding Python parameters are all sizes of buffers filled in by zlib, so it is okay to reduce higher values to the UINT_MAX internal cap. OverflowError is still raised for sizes that do not fit in Py_ssize_t. Sizes are now limited to Py_ssize_t rather than unsigned long, because Python byte strings cannot be larger than Py_ssize_t. Previously this could result in a SystemError on 32-bit platforms. This resolves a regression in the gzip module when reading more than UINT_MAX or LONG_MAX bytes in one call, introduced by revision 62723172412c.
* | Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-1/+1
|\ \ | |/
| * Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-1/+1
| |
* | rstlint: Fix "default role used" warningBerker Peksag2015-10-201-1/+1
|\ \ | |/ | | | | This should make buildbots green.
| * rstlint: Fix "default role used" warningBerker Peksag2015-10-201-1/+1
| | | | | | | | This should make buildbots green.
* | Merged cookbook update from 3.4.Vinay Sajip2015-10-171-0/+66
|\ \ | |/
| * Added entry to logging cookbook.Vinay Sajip2015-10-171-0/+66
| |
* | Closes #25344: Merged fix from 3.4.Vinay Sajip2015-10-091-0/+137
|\ \ | |/
| * Closes #25344: Added cookbook recipe to show buffering of logging events.Vinay Sajip2015-10-091-0/+137
| |
* | merge 3.4 (#25145)Benjamin Peterson2015-09-201-3/+2
|\ \ | |/
| * remove reference to PyGoogle (#25145)Benjamin Peterson2015-09-201-2/+1
| | | | | | | | Patch by Bar Harel.
| * use a more modern UA (#25145)Benjamin Peterson2015-09-201-1/+1
| |
| * Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple ↵Senthil Kumaran2015-06-153-6/+6
| | | | | | | | | | | | | | | | | | documentation typos. Related Issues: #issue21528 #issue24453
* | Issue #24232: Fix typos. Patch by Ville Skyttä.Berker Peksag2015-05-182-2/+2
|\ \ | |/
| * Issue #24232: Fix typos. Patch by Ville Skyttä.Berker Peksag2015-05-182-2/+2
| |
* | Argument Clinic: added missing bit of info in howtoTal Einat2015-05-161-0/+1
| |
* | PEP 479: Change StopIteration handling inside generators.Yury Selivanov2015-05-091-4/+4
| | | | | | | | Closes issue #22906.
* | Issue #24000: Improved Argument Clinic's mapping of converters to legacyLarry Hastings2015-05-081-37/+33
| | | | | | | | "format units". Updated the documentation to match.
* | Fix a grammar error in the porting HOWTO as found by Eric Smith.Brett Cannon2015-04-131-1/+1
| |
* | Issue #23733: Mention bytes.__mod__ in the porting HOWTO.Brett Cannon2015-04-131-3/+2
| |
* | Fix doc build errorAntoine Pitrou2015-04-131-1/+1
| |
* | Issue #23732: Mention the new -b semantics in the porting HOWTO.Brett Cannon2015-04-131-4/+6
| |
* | Issue #12955: Change the urlopen() examples to use context managers where ↵Berker Peksag2015-04-121-8/+8
|\ \ | |/ | | | | | | | | appropriate. Patch by Martin Panter.
| * Issue #12955: Change the urlopen() examples to use context managers where ↵Berker Peksag2015-04-121-8/+8
| | | | | | | | | | | | appropriate. Patch by Martin Panter.
* | Issue #23622: Unknown escapes in regular expressions that consist of ``'\'``Serhiy Storchaka2015-03-241-1/+1
| | | | | | | | | | and ASCII letter now raise a deprecation warning and will be forbidden in Python 3.6.
* | Merge 3.4Brett Cannon2015-03-131-13/+13
|\ \ | |/
| * Make the case to only support Python 2.7 when supporting 2/3 simultaneouslyBrett Cannon2015-03-131-13/+13
| |
* | Merge with 3.4 for porting HOWTO tweaksBrett Cannon2015-02-271-2/+3
|\ \ | |/
| * Fix the clarification as to why division cannot be ported automaticallyBrett Cannon2015-02-271-2/+3
| |
* | Added respect_handler_level to QueueListener.Vinay Sajip2015-02-091-0/+9
| |
* | Merged documentation update from 3.4.Vinay Sajip2015-02-011-0/+54
|\ \ | |/
| * Added a cookbook entry on logging audible messages.Vinay Sajip2015-02-011-0/+54
| |
* | Merged documentation update from 3.4.Vinay Sajip2015-01-281-0/+55
|\ \ | |/
| * Added a logging cookbook entry on customized exception formatting.Vinay Sajip2015-01-281-0/+55
| |
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-2/+5
| | | | | | | | decoding and translating.
* | Add missing URL link to Modernize docs.Ned Deily2015-01-031-1/+1
|\ \ | |/