1. 2dd6e47 merge 3.4 by Benjamin Peterson · 9 years ago
  2. 7dcbf90 'not' is very important here by Benjamin Peterson · 9 years ago
  3. c0a446a merge 3.4 by Benjamin Peterson · 9 years ago
  4. b8fd262 tighten warning by Benjamin Peterson · 9 years ago
  5. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  6. df1b699 Issue #22823: Use set literals instead of creating a set from a list by Raymond Hettinger · 10 years ago
  7. 93a56cd Doc: fix default role usage (except in unittest mock docs) by Georg Brandl · 10 years ago
  8. 9c1dba2 Revert #22251 by Berker Peksag · 10 years ago
  9. 3749404 Issue #22251: Fix ReST markup to avoid errors building docs. by Berker Peksag · 10 years ago
  10. 6b4c847 Doc: fix default role usage (except in unittest mock docs) by Georg Brandl · 10 years ago
  11. b645724 Fix the description of pickle protocol numbers by Antoine Pitrou · 11 years ago
  12. d05c9ff Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. by Alexandre Vassalotti · 11 years ago
  13. 9bcb112 Mention pickle protocol 4, and some tweaks. by Antoine Pitrou · 11 years ago
  14. 9858e8b Issue #19900: improve generalities at the start of the pickle module doc by Antoine Pitrou · 11 years ago
  15. d4d6055 Issue #19900: improve generalities at the start of the pickle module doc by Antoine Pitrou · 11 years ago
  16. 0e90e99 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 11 years ago
  17. fbc1c26 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 11 years ago
  18. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  19. 587e970 Update e-mail address by Andrew Kuchling · 11 years ago
  20. 7150787 Merge from 3.3 by Andrew Kuchling · 11 years ago
  21. 2498d9e Issue #19272: slight clarification of pickle docs with regard to lambda. by Ethan Furman · 11 years ago
  22. 5bbbc94 Issue #19189: Improved cross-references in the pickle module documentation. by Serhiy Storchaka · 11 years ago
  23. a6d0dd5 Fix method name in documentation (__setstate__ --> __getstate__) by Eli Bendersky · 12 years ago
  24. 78f3ce5 Fix method name in documentation (__setstate__ --> __getstate__) by Eli Bendersky · 12 years ago
  25. fda08b0 Some nits in the pickle docs. by Antoine Pitrou · 12 years ago
  26. a9494f6 Some nits in the pickle docs. by Antoine Pitrou · 12 years ago
  27. 8d3c290 Issue #14166: Pickler objects now have an optional `dispatch_table` attribute which allows to set custom per-pickler reduction functions. by Antoine Pitrou · 12 years ago
  28. e62aad3 #13426: fix typos in pickle doc. by Ezio Melotti · 13 years ago
  29. 5aa580f Fix typo. by Georg Brandl · 14 years ago
  30. c814826 Port changes to pickle docs apparently lost in py3k. by Georg Brandl · 14 years ago
  31. 0036bcf #9105: move pickle warning to a bit more prominent location. by Georg Brandl · 14 years ago
  32. 6faee4e #9911: doc copyedits. by Georg Brandl · 14 years ago
  33. 11cb961 Add cross-references to the glossary entry for file objects. by Antoine Pitrou · 14 years ago
  34. 1824415 Switch more function arguments docs to new-style. by Georg Brandl · 15 years ago
  35. d9dfaa9 Issue #6137: The pickle module now translates module names when loading by Antoine Pitrou · 15 years ago
  36. e720c0a Merged revisions 72009 via svnmerge from by Georg Brandl · 15 years ago
  37. d23f822 Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-70789,70824,70828,70832,70836,70842,70851,70855,70857,70866-70872,70883,70885,70893-70894,70896-70897,70903,70905-70907,70915,70927,70933,70951,70960,70962-70964,70998,71001,71006,71008,71010-71011,71019,71037,71056,71094,71101-71103,71106,71119,71123,71149-71150,71203,71212,71214-71217,71221,71240 via svnmerge from by Benjamin Peterson · 15 years ago
  38. 3cde7c7 Undocument the existence of the memo attribute and its main use-case. by Alexandre Vassalotti · 15 years ago
  39. 1102062 Emphasize that Unpickler.memo is not necessarily a dict. by Alexandre Vassalotti · 15 years ago
  40. 9d7665d Add more examples in pickle documentation. by Alexandre Vassalotti · 15 years ago
  41. ae2dbe2 #5486: typos. by Georg Brandl · 15 years ago
  42. bcd1e3a Clean up pickle usage examples. by Alexandre Vassalotti · 16 years ago
  43. f7d08c7 Issue 2980: Protocol 0 is not truly restricted to ASCII. by Alexandre Vassalotti · 16 years ago
  44. 4a72a19 Remove obsolete note on binary-mode vs. text-mode file. by Alexandre Vassalotti · 16 years ago
  45. 48310cd Remove trailing whitespace. by Georg Brandl · 16 years ago
  46. 73b90a8 Improve pickle's documentation. by Alexandre Vassalotti · 16 years ago
  47. d039286 More improvements to pickle's documentation. by Alexandre Vassalotti · 16 years ago
  48. 5f3b63a Improve pickle's documentation. by Alexandre Vassalotti · 16 years ago
  49. 758bca6 Improve pickle's documentation. by Alexandre Vassalotti · 16 years ago
  50. be149d0 remove references of cPickle in the pickle docs (uhh. unlabeled footnotes) by Benjamin Peterson · 16 years ago
  51. 0312494 Remove last traces of cStringIO. by Georg Brandl · 16 years ago
  52. e6bcc91 Remove many "versionchanged" items that didn't use the official markup, by Georg Brandl · 16 years ago
  53. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  54. e41251e Merged revisions 62490 via svnmerge from by Benjamin Peterson · 16 years ago
  55. b9e2304 dumps() and loads() work in terms of bytes objects not strings. by Mark Summerfield · 16 years ago
  56. 23e8db5 #2567: remove new-style/old-style class docs. by Georg Brandl · 16 years ago
  57. 42f2ae0 #2558: document pickle protocol version 3. Thanks to Guilherme Polo. by Georg Brandl · 16 years ago
  58. 2a241ca Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62079,62081-62083,62086-62089,62092-62094,62098,62101,62104,62106-62109,62115-62122,62124-62125,62128,62130,62132,62134-62135,62137,62139-62140,62144,62146,62151,62155,62157,62162-62174 via svnmerge from by Martin v. Löwis · 16 years ago
  59. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 16 years ago
  60. f694518 Update docs w.r.t. PEP 3100 changes -- patch for GHOP by Dan Finnie. by Georg Brandl · 17 years ago
  61. 5b5e81c Merged revisions 59605-59624 via svnmerge from by Christian Heimes · 17 years ago
  62. ba956ae Remove mentions of "long integer" in the docs. by Georg Brandl · 17 years ago
  63. 9afde1c #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. by Georg Brandl · 17 years ago
  64. 6fe2a6c Fix a legacy raise statement in pickle's docs. by Collin Winter · 17 years ago
  65. 6911e3c Convert all print statements in the docs. by Georg Brandl · 17 years ago
  66. 55ac8f0 Get rid of the remaining versionadded/versionchanged directives. by Georg Brandl · 17 years ago
  67. 85eb8c1 - document bytes() by Georg Brandl · 17 years ago
  68. 116aa62 Move the 3k reST doc tree in place. by Georg Brandl · 17 years ago