Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #24277: Fix some incorrect backslashes in email example. | R David Murray | 2016-09-07 | 1 | -2/+2 |
| | |||||
* | #24277: The new email API is no longer provisional. | R David Murray | 2016-09-07 | 8 | -160/+94 |
| | | | | | | | This is a wholesale reorganization and editing of the email documentation to make the new API the standard one, and the old API the 'legacy' one. The default is still the compat32 policy, for backward compatibility. We will change that eventually. | ||||
* | Closes #27595: Document PEP 495 (Local Time Disambiguation) features. | Alexander Belopolsky | 2016-08-24 | 1 | -62/+68 |
| | |||||
* | Merge: #26176: fix usage of Address constructor in email examples. | R David Murray | 2016-07-10 | 1 | -3/+3 |
|\ | |||||
| * | #26176: fix usage of Address constructor in email examples. | R David Murray | 2016-07-10 | 1 | -3/+3 |
| | | | | | | | | Patch by Nathan Harold. | ||||
* | | Issue #25985: sys.version_info is now used instead of sys.version | Serhiy Storchaka | 2016-02-11 | 1 | -1/+1 |
| | | | | | | | | to format short Python version. | ||||
* | | Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure | Martin Panter | 2015-11-30 | 1 | -1/+3 |
|/ | |||||
* | docs: Better comment for tp_as_async slot | Yury Selivanov | 2015-08-26 | 1 | -1/+2 |
| | |||||
* | Issue #24808: Merge 3.4 into 3.5; adjust new tp_as_async field | Martin Panter | 2015-08-25 | 1 | -8/+7 |
|\ | |||||
| * | Issue #24808: Update the documentation of some PyTypeObject fields | Martin Panter | 2015-08-25 | 1 | -8/+7 |
| | | | | | | | | Patch by Joseph Weston. | ||||
* | | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-11 | 1 | -1/+1 |
| | | |||||
* | | Removed unintentional trailing spaces in non-external and non-generated C files. | Serhiy Storchaka | 2015-03-18 | 1 | -1/+1 |
| | | |||||
* | | Issue #23511: Port email-simple.py to Python 3. | Berker Peksag | 2015-02-25 | 4 | -10/+10 |
|\ \ | |/ | | | | | | | | | Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon. | ||||
| * | Issue #23511: Port email-simple.py to Python 3. | Berker Peksag | 2015-02-25 | 4 | -10/+10 |
| | | | | | | | | | | | | Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon. | ||||
* | | Merge with 3.4 | Georg Brandl | 2014-10-29 | 1 | -1/+1 |
|\ \ | |/ |/| | |||||
| * | Issue #18395, #22108: Update embedded Python examples to decode correctly | Victor Stinner | 2014-08-01 | 1 | -1/+1 |
| | | | | | | | | command line parameters: use Py_DecodeLocale() and PyUnicode_DecodeFSDefault(). | ||||
* | | Use https:// URLs when referring to python.org hosts. | Georg Brandl | 2014-10-29 | 1 | -2/+2 |
|/ | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-15 | 1 | -1/+1 |
| | |||||
* | #20477: add examples of using the new contentmanager API. | R David Murray | 2014-02-07 | 2 | -0/+130 |
| | |||||
* | Issue #18972: Modernize email examples and use the argparse module in them. | Serhiy Storchaka | 2013-10-06 | 2 | -80/+51 |
| | |||||
* | Issue #8713: Support alternative start methods in multiprocessing on Unix. | Richard Oudkerk | 2013-08-14 | 6 | -862/+89 |
| | | | | See http://hg.python.org/sandbox/sbt#spawn | ||||
* | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 1 | -0/+7 |
| | |||||
* | Issue #14428: Use the new time.perf_counter() and time.process_time() functions | Victor Stinner | 2012-04-29 | 1 | -5/+1 |
| | | | | | | | | | | | | * Replace "time.clock on windows, or time.time" with time.perf_counter() * profile module: only use time.process_time() instead of trying different functions providing the process time * timeit module: use time.perf_counter() by default, time.time() and time.clock() can still be used using --time and --clock options * pybench program: use time.perf_counter() by default, add support for the new time.process_time() and time.perf_counter() functions, but stay backward compatible. Use also time.get_clock_info() to display information of the timer. | ||||
* | Merge: Propagate changes for issues #13053 and #13086 from 2.7 to 3.2. | Larry Hastings | 2012-02-28 | 1 | -0/+134 |
|\ | | | | | | | (Doc only.) | ||||
| * | Propagate changes for issues #13053 and #13086 from 2.7 to 3.2. (Doc only.) | Larry Hastings | 2012-02-28 | 1 | -0/+134 |
| | | |||||
* | | Merge branch '3.2' | Petri Lehtinen | 2012-02-16 | 1 | -2/+1 |
|\ \ | |/ | | | | | Closes #13995. | ||||
| * | sqlite3: Fix documentation errors concerning Cursor.rowcount | Petri Lehtinen | 2012-02-16 | 1 | -2/+1 |
| | | | | | | | | Closes #13995. | ||||
* | | Merge branch '3.2' | Petri Lehtinen | 2012-02-15 | 3 | -135/+81 |
|\ \ | |/ |/| | | | Issue #13491. | ||||
| * | Undocument and clean up sqlite3.OptimizedUnicode | Petri Lehtinen | 2012-02-09 | 1 | -11/+0 |
| | | | | | | | | Closes #13921. | ||||
| * | Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat. | Amaury Forgeot d'Arc | 2011-11-06 | 3 | -51/+3 |
| | | |||||
| * | merge with 3.2 | Sandro Tosi | 2011-10-31 | 3 | -87/+81 |
| |\ | |||||
| | * | Issue #12672: fix code samples in extending/newtypes.html for PEP-7 compliance | Eli Bendersky | 2011-08-12 | 3 | -87/+81 |
| | | | |||||
* | | | Issue #13491: Fix many errors in sqlite3 documentation | Petri Lehtinen | 2012-02-15 | 7 | -46/+23 |
|/ / | | | | | | | Initial patch by Johannes Vogel. | ||||
* | | caught is the right pp of catch; thanks to Don Bennett from docs@ | Sandro Tosi | 2011-10-31 | 1 | -1/+1 |
|/ | |||||
* | Merge #11883: fix email examples by adding 'localhost' to SMTP constructor calls | R David Murray | 2011-04-30 | 3 | -3/+3 |
|\ | |||||
| * | #11883: fix email examples by adding 'localhost' to SMTP constructor calls | R David Murray | 2011-04-30 | 3 | -3/+3 |
| | | |||||
* | | #11883: replace incorrect call to sendmail with correct call to send_message | R David Murray | 2011-04-30 | 1 | -1/+1 |
| | | |||||
* | | Issue 11929: Minor whitespace clean-ups. | Raymond Hettinger | 2011-04-26 | 7 | -17/+26 |
| | | |||||
* | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 9 | -10/+62 |
|\ \ | |/ |/| | |||||
| * | Issue #9063: Corrected the tzinfo example. | Alexander Belopolsky | 2010-12-24 | 1 | -1/+1 |
| | | |||||
| * | Remove unnecessary `object` base class in docs (#10366). | Éric Araujo | 2010-11-22 | 4 | -4/+4 |
| | | | | | | | | Also add a note about inheritance from `object` being default. | ||||
| * | Fix email doc update I overlooked (thanks, Éric) | R. David Murray | 2010-11-20 | 1 | -1/+1 |
| | | |||||
| * | Issue #7061: Added a 'Turtle star' sidebar | Alexander Belopolsky | 2010-11-09 | 1 | -0/+10 |
| | | |||||
| * | #10321: Add support for sending binary DATA and Message objects to smtplib | R. David Murray | 2010-11-08 | 2 | -4/+3 |
| | | |||||
| * | Syntax fixes for examples in the Doc/includes | Senthil Kumaran | 2010-10-17 | 2 | -4/+4 |
| | | |||||
| * | Merged revisions ↵ | Benjamin Peterson | 2010-03-21 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines Remove Tools/modulator, a reference to it in the docs, and a screenshot of it. (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.) ........ r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). ........ r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line #7706: add include guards where they're missing; required for Windows CE ........ r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line #7191: describe more details of wbits parameter ........ r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line #7637: avoid repeated-concatenation antipattern in example ........ r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines Manually copy patch for bug 7250 from the release26-maint branch. I suck because I did this in the wrong order and couldn't smack svnmerge into submission. ........ r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line remove CVS id ........ r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line Link correction in documentation. ........ r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line rephrase ........ r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines Try to fix buildbot breakage from r78384. Thanks bitdancer and briancurtin for the help. ........ r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines These line should not be there. ........ | ||||
| * | Fixing the file call in the rfc822.Message replacement example. | Sean Reifscheider | 2010-03-20 | 1 | -1/+1 |
| | | |||||
| * | Adding an example of reproducing the rfc822.Message() parsing. | Sean Reifscheider | 2010-03-19 | 1 | -0/+17 |
| | | |||||
| * | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 3 | -3/+3 |
| | | |||||
| * | Merged new pysqlite version 2.6.0 from trunk. | Gerhard Häring | 2010-03-05 | 1 | -0/+26 |
| | |