Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typo in object.__getnewargs__() documentation (GH-7554) | Andrés Delfino | 2018-06-10 | 1 | -1/+1 |
| | |||||
* | bpo-23403: Bump pickle.DEFAULT_PROTOCOL to 4 (#6355) | Łukasz Langa | 2018-04-04 | 1 | -6/+14 |
| | | | This makes performance better and produces shorter pickles. This change is backwards compatible up to the oldest currently supported version of Python (3.4). | ||||
* | Fix trivial typo in pickle.rst (#4955) | Sebastian Pucilowski | 2017-12-21 | 1 | -1/+1 |
| | |||||
* | Merge Issue #22558. | Terry Jan Reedy | 2016-06-11 | 1 | -5/+9 |
|\ | |||||
| * | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -5/+9 |
| | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | | Issue #25523: Merge a-to-an corrections from 3.5. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #25523: Merge a-to-an corrections from 3.4. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| |\ | |||||
| | * | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| | | | |||||
* | | | Issue #25523: Merge a-to-an corrections from 3.5 | Martin Panter | 2015-11-02 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| |\ \ | | |/ | |||||
| | * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | Issue #24164: Document changes to __getnewargs__ and __getnewargs_ex__. | Serhiy Storchaka | 2015-10-13 | 1 | -6/+13 |
|/ / | |||||
* | | Issue #25161: Merge full stops from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-07-06 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | 'not' is very important here | Benjamin Peterson | 2015-07-06 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-07-06 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | tighten warning | Benjamin Peterson | 2015-07-06 | 1 | -3/+3 |
| | | |||||
| * | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 1 | -1/+1 |
| | | |||||
* | | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. | Yury Selivanov | 2015-07-03 | 1 | -1/+1 |
| | | |||||
* | | Issue #22823: Use set literals instead of creating a set from a list | Raymond Hettinger | 2014-11-09 | 1 | -1/+1 |
| | | |||||
* | | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 1 | -1/+1 |
|/ | |||||
* | Revert #22251 | Berker Peksag | 2014-09-27 | 1 | -1/+0 |
| | |||||
* | Issue #22251: Fix ReST markup to avoid errors building docs. | Berker Peksag | 2014-09-27 | 1 | -0/+1 |
| | |||||
* | Fix the description of pickle protocol numbers | Antoine Pitrou | 2014-01-21 | 1 | -26/+13 |
| | |||||
* | Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. | Alexandre Vassalotti | 2013-12-07 | 1 | -42/+46 |
| | | | | | | | Initial patch by Merlijn van Deen. I've added a few unrelated docstring fixes in the patch while I was at it, which makes the documentation for pickle a bit more consistent. | ||||
* | Mention pickle protocol 4, and some tweaks. | Antoine Pitrou | 2013-12-07 | 1 | -7/+18 |
| | |||||
* | Issue #19900: improve generalities at the start of the pickle module doc | Antoine Pitrou | 2013-12-06 | 1 | -20/+53 |
|\ | |||||
| * | Issue #19900: improve generalities at the start of the pickle module doc | Antoine Pitrou | 2013-12-06 | 1 | -20/+53 |
| | | |||||
* | | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -6/+6 |
| | | |||||
* | | Issue #17810: Implement PEP 3154, pickle protocol 4. | Antoine Pitrou | 2013-11-23 | 1 | -9/+26 |
| | | | | | | | | Most of the work is by Alexandre. | ||||
* | | Merge from 3.3 | Andrew Kuchling | 2013-11-12 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Update e-mail address | Andrew Kuchling | 2013-11-12 | 1 | -1/+1 |
| | | |||||
* | | Issue #19272: slight clarification of pickle docs with regard to lambda. | Ethan Furman | 2013-10-18 | 1 | -2/+6 |
|/ | |||||
* | Issue #19189: Improved cross-references in the pickle module documentation. | Serhiy Storchaka | 2013-10-14 | 1 | -18/+23 |
| | |||||
* | Fix method name in documentation (__setstate__ --> __getstate__) | Eli Bendersky | 2013-01-02 | 1 | -4/+5 |
|\ | |||||
| * | Fix method name in documentation (__setstate__ --> __getstate__) | Eli Bendersky | 2013-01-02 | 1 | -4/+5 |
| | | |||||
* | | Some nits in the pickle docs. | Antoine Pitrou | 2012-05-10 | 1 | -21/+23 |
|\ \ | |/ | |||||
| * | Some nits in the pickle docs. | Antoine Pitrou | 2012-05-10 | 1 | -21/+23 |
| | | |||||
* | | Issue #14166: Pickler objects now have an optional `dispatch_table` ↵ | Antoine Pitrou | 2012-03-04 | 1 | -0/+61 |
|/ | | | | | | attribute which allows to set custom per-pickler reduction functions. Patch by sbt. | ||||
* | #13426: fix typos in pickle doc. | Ezio Melotti | 2011-11-18 | 1 | -5/+5 |
| | |||||
* | Fix typo. | Georg Brandl | 2010-11-30 | 1 | -1/+1 |
| | |||||
* | Port changes to pickle docs apparently lost in py3k. | Georg Brandl | 2010-10-17 | 1 | -79/+85 |
| | |||||
* | #9105: move pickle warning to a bit more prominent location. | Georg Brandl | 2010-10-17 | 1 | -6/+6 |
| | |||||
* | #9911: doc copyedits. | Georg Brandl | 2010-09-21 | 1 | -4/+4 |
| | |||||
* | Add cross-references to the glossary entry for file objects. | Antoine Pitrou | 2010-09-15 | 1 | -14/+15 |
| | |||||
* | Switch more function arguments docs to new-style. | Georg Brandl | 2009-09-02 | 1 | -6/+6 |
| | |||||
* | Issue #6137: The pickle module now translates module names when loading | Antoine Pitrou | 2009-06-04 | 1 | -15/+36 |
| | | | | | | or dumping pickles with a 2.x-compatible protocol, in order to make data sharing and migration easier. This behaviour can be disabled using the new `fix_imports` optional argument. | ||||
* | Merged revisions 72009 via svnmerge from | Georg Brandl | 2009-04-27 | 1 | -2/+3 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72009 | georg.brandl | 2009-04-27 17:29:09 +0200 (Mo, 27 Apr 2009) | 3 lines Demote warnings to notices where appropriate, following the goal that as few "red box" warnings should clutter the docs as possible. Part 1: stuff that gets merged to Py3k. ........ |