Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13689: Remove a dead link from howto/urllib. | Berker Peksag | 2014-07-01 | 1 | -3/+1 |
| | |||||
* | Fix indentation and class name in socket howto example. | Ezio Melotti | 2014-06-27 | 1 | -3/+3 |
| | |||||
* | Fixed typo in documentation. | Vinay Sajip | 2014-06-25 | 1 | -1/+1 |
| | |||||
* | Fix typo reported by Jesse W on docs@ | Zachary Ware | 2014-06-16 | 1 | -1/+1 |
| | |||||
* | #21693 - Fix the broken link for pylons project. | Senthil Kumaran | 2014-06-11 | 1 | -1/+1 |
| | |||||
* | Updated logging HOWTO section on optimization. | Vinay Sajip | 2014-06-01 | 1 | -0/+15 |
| | |||||
* | fix typo in variable name (closes #21586) | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | Don't grow strings by concatenation. Use ''.join() instead. | Raymond Hettinger | 2014-05-18 | 1 | -5/+7 |
| | |||||
* | fix off-by-one error (closes #21330) | Benjamin Peterson | 2014-04-23 | 1 | -1/+1 |
| | |||||
* | Get rid of deprecated IOError in the doc | Andrew Svetlov | 2014-03-31 | 1 | -1/+1 |
| | |||||
* | Issue 21014: Use booleans instead of 0 and 1 in examples. | Raymond Hettinger | 2014-03-28 | 1 | -1/+1 |
| | |||||
* | Updated external link in documentation. | Vinay Sajip | 2014-03-25 | 1 | -1/+1 |
| | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -2/+31 |
| | |||||
* | Merged documentation update from 3.3. | Vinay Sajip | 2014-02-03 | 1 | -0/+87 |
|\ | |||||
| * | Added cookbook entry on logging filter configuration using dictConfig(). | Vinay Sajip | 2014-02-03 | 1 | -0/+87 |
| | | |||||
* | | #Issue 20456: Several improvements and bugfixes for Argument Clinic, | Larry Hastings | 2014-02-01 | 1 | -72/+100 |
| | | | | | | | | | | including correctly generating code for Clinic blocks inside C preprocessor conditional blocks. | ||||
* | | Documentation fixes, including fixing "suspicious" problems. | Larry Hastings | 2014-01-26 | 1 | -50/+64 |
| | | |||||
* | | #20348: fix headers markup in Argument Clinic howto. Patch by Moritz Neeb. | Ezio Melotti | 2014-01-25 | 1 | -6/+2 |
| | | |||||
* | | Doc fixes for Argument Clinic. | Larry Hastings | 2014-01-22 | 1 | -6/+18 |
| | | |||||
* | | Issue #20294: Argument Clinic now supports argument parsing for __new__ and | Larry Hastings | 2014-01-19 | 1 | -2/+21 |
| | | | | | | | | __init__ functions. | ||||
* | | Doc improvements for Clinic howto "Goals" section. | Larry Hastings | 2014-01-18 | 1 | -9/+9 |
| | | |||||
* | | Issue #20287: Argument Clinic's output is now configurable, allowing | Larry Hastings | 2014-01-18 | 1 | -1/+319 |
| | | | | | | | | delaying its output or even redirecting it to a separate file. | ||||
* | | Merged documentation update from 3.3. | Vinay Sajip | 2014-01-17 | 1 | -0/+28 |
|\ \ | |/ | |||||
| * | Added example to recently added cookbook entry. | Vinay Sajip | 2014-01-17 | 1 | -0/+28 |
| | | |||||
* | | Issue #20208: Clarify some things in the Python porting HOWTO. | Brett Cannon | 2014-01-17 | 1 | -9/+11 |
| | | | | | | | | | | Thanks to Rodrigo Bernardo Pimentel, Ondřej Čertík, and Dmitry Shachnev for the feedback leading to the changes. | ||||
* | | Issue #20226: Major improvements to Argument Clinic. | Larry Hastings | 2014-01-16 | 1 | -42/+227 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * You may now specify an expression as the default value for a parameter! Example: "sys.maxsize - 1". This support is intentionally quite limited; you may only use values that can be represented as static C values. * Removed "doc_default", simplified support for "c_default" and "py_default". (I'm not sure we still even need "py_default", but I'm leaving it in for now in case a use presents itself.) * Parameter lines support a trailing '\\' as a line continuation character, allowing you to break up long lines. * The argument parsing code generated when supporting optional groups now uses PyTuple_GET_SIZE instead of PyTuple_GetSize, leading to a 850% speedup in parsing. (Just kidding, this is an unmeasurable difference.) * A bugfix for the recent regression where the generated prototype from pydoc for builtins would be littered with unreadable "=<object ...>"" default values for parameters that had no default value. * Converted some asserts into proper failure messages. * Many doc improvements and fixes. | ||||
* | | Merged documentation update from 3.3. | Vinay Sajip | 2014-01-15 | 2 | -1/+92 |
|\ \ | |/ | |||||
| * | Added cookbook entry on alternative formatting styles. | Vinay Sajip | 2014-01-15 | 2 | -1/+92 |
| | | |||||
* | | Issue #20268: Argument Clinic now supports cloning the parameters | Larry Hastings | 2014-01-15 | 1 | -0/+43 |
| | | | | | | | | and return converter from existing functions. | ||||
* | | Minor doc fix in Clinic howto. | Larry Hastings | 2014-01-12 | 1 | -3/+4 |
| | | |||||
* | | Issue #20214: Fixed a number of small issues and documentation errors in | Larry Hastings | 2014-01-12 | 1 | -20/+120 |
| | | | | | | | | Argument Clinic (see issue for details). | ||||
* | | Closes #20200: Argument Clinic custom converter example should be in a | Zachary Ware | 2014-01-10 | 1 | -2/+2 |
| | | | | | | | | | | 'python' clinic block, not a 'clinic' clinic block. Patch written by Ryan Smith-Roberts. | ||||
* | | Issue #19273: The marker comments Argument Clinic uses have been changed | Larry Hastings | 2014-01-07 | 1 | -63/+63 |
| | | | | | | | | to improve readability. | ||||
* | | Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!" | Larry Hastings | 2014-01-07 | 1 | -12/+15 |
| | | | | | | | | format unit. | ||||
* | | Issue #20096: Update the Python 2/3 porting HOWTO to focus on | Brett Cannon | 2014-01-07 | 1 | -375/+223 |
| | | | | | | | | source-compatibility instead of 2to3. | ||||
* | | Argument Clinic: fixed test suite, improved howto. | Larry Hastings | 2014-01-05 | 1 | -87/+154 |
| | | |||||
* | | Issue #19659: Added documentation for Argument Clinic. | Larry Hastings | 2014-01-04 | 2 | -0/+901 |
| | | |||||
* | | Removed spaces before colons and semicolons. | Serhiy Storchaka | 2013-12-24 | 2 | -4/+4 |
|\ \ | |/ | |||||
| * | Removed spaces before colons and semicolons. | Serhiy Storchaka | 2013-12-24 | 2 | -4/+4 |
| | | |||||
* | | Removed spaces before commas and periods. | Serhiy Storchaka | 2013-12-23 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Removed spaces before commas and periods. | Serhiy Storchaka | 2013-12-23 | 2 | -2/+2 |
| | | |||||
* | | Merged minor documentation update from 3.3. | Vinay Sajip | 2013-12-06 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Added minor clarification in logging HOWTO. | Vinay Sajip | 2013-12-06 | 1 | -1/+2 |
| | | |||||
* | | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 2 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 2 | -3/+3 |
| | | |||||
* | | #19778: fix a couple of re reprs in the documentation. | Ezio Melotti | 2013-11-25 | 1 | -4/+4 |
| | | |||||
* | | #19639: update the repr of the match objects in the docs. Patch by Claudiu ↵ | Ezio Melotti | 2013-11-23 | 1 | -8/+8 |
| | | | | | | | | Popa. | ||||
* | | Issue #19504: Used American spelling for 'customize'. | Vinay Sajip | 2013-11-15 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Issue #19504: Used American spelling for 'customize'. | Vinay Sajip | 2013-11-15 | 1 | -5/+5 |
| | | |||||
* | | Closes #18345: Merged documentation update from 3.3. | Vinay Sajip | 2013-11-05 | 1 | -0/+135 |
|\ \ | |/ |