summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | fix contextlib.ExitStack typo in 3.3's whatsnew.rstGiampaolo Rodola'2012-09-251-1/+1
| | |/ /
| | * | Close #16022: What's New in Python 3.3 document is no more at beta stageVictor Stinner2012-09-241-4/+0
| | | |
| | * | Add What's New entries for some minor work I did in 3.3.Larry Hastings2012-09-211-1/+12
| | | |
| | * | Fix rst markup.Ezio Melotti2012-09-201-3/+3
| | | |
| | * | What's New in Python 3.3: mention unittest.mockVictor Stinner2012-09-181-1/+2
| | | |
| | * | Issue #15814: Update whatsnew to the current state of hashing memoryviews.Stefan Krah2012-09-081-3/+2
| | | |
| | * | add whatsnew entry for PEP 421Eric Snow2012-09-061-0/+35
| | | |
| | * | Add missing unit.Stefan Krah2012-09-011-1/+1
| | | |
| | * | Compile _decimal without asserts and update benchmark results.Stefan Krah2012-09-011-1/+1
| | | |
| | * | Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().Stefan Krah2012-08-301-0/+4
| | | |
* | | | Add smtpd changes to whatsnew, and integrate 'other' section.R David Murray2012-09-291-13/+28
| | | | | | | | | | | | | | | | Also made the smtplib markup consistent with the rest of the markup.
* | | | Remove visible XXX in What's New.R David Murray2012-09-291-1/+1
| | | |
* | | | Document the addition of 'quote' to shlex in What's New.R David Murray2012-09-291-1/+9
|/ / /
* | | Update release date in whatsnew document.Georg Brandl2012-09-291-0/+1
| | |
* | | Close #16022: What's New in Python 3.3 document is no more at beta stageVictor Stinner2012-09-241-4/+0
| | |
* | | Add What's New entries for some minor work I did in 3.3.Larry Hastings2012-09-211-1/+12
| | |
* | | Issue #15814: Update whatsnew to the current state of hashing memoryviews.v3.3.0rc2Stefan Krah2012-09-081-3/+2
| | |
* | | Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().Stefan Krah2012-08-301-0/+4
| | |
* | | Add missing unit.Stefan Krah2012-09-011-1/+1
| | |
* | | Compile _decimal without asserts and update benchmark results.Stefan Krah2012-09-011-1/+1
|/ /
* | Close #15573: use value-based memoryview comparisons (patch by Stefan Krah)Nick Coghlan2012-08-251-1/+6
| |
* | Issue #13072: The array module's 'u' format code is now deprecated andStefan Krah2012-08-241-0/+7
| | | | | | | | will be removed in Python 4.0.
* | Suggested a whatsnew itemAlexander Belopolsky2012-08-231-1/+3
| |
* | Improve the pyvenv entryAntoine Pitrou2012-08-201-7/+16
| |
* | Improved summary section in whatsnewAntoine Pitrou2012-08-201-7/+41
| |
* | Close #4966: revamp the sequence docs in order to better explain the state ↵Nick Coghlan2012-08-201-1/+4
| | | | | | | | of modern Python
* | Merge #15543: glossary entry for and 'universal newlines', and links to it.R David Murray2012-08-154-13/+26
|\ \ | |/ | | | | Patch by Chris Jerdonek.
| * #15543: reflow paragraphs.R David Murray2012-08-152-13/+12
| |
| * #15543: glossary entry for and 'universal newlines', and links to it.R David Murray2012-08-154-5/+19
| | | | | | | | Patch by Chris Jerdonek.
* | Mention PEP 362: Function Signature Object in whatsnew.Andrew Svetlov2012-08-131-0/+17
| |
* | Issue #15527: fix docs, remove double parens by changing markup.Andrew Svetlov2012-08-117-92/+92
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-113-11/+11
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-113-11/+11
| | | | | | | | Patch by Serhiy Storchaka.
* | Fix markup errors and update pydoc topics.Georg Brandl2012-08-111-1/+1
| |
* | Issue #15610: The PyImport_ImportModuleEx macro now callsBrett Cannon2012-08-101-0/+5
| | | | | | | | | | | | | | | | | | PyImport_ImportModuleLevel() with a 'level' of 0 instead of -1 as the latter is no longer a valid value. Also added a versionchanged note for PyImport_ImportModuleLevel() just in case people don't make the connection between changes to __import__() and this C function.
* | Add description of major changes in xml.etree.ElementTree to whatsnew/3.3Eli Bendersky2012-08-091-0/+12
| |
* | What's New in Python 3.3: Split improved and new modules, start to write a ↵Victor Stinner2012-08-051-45/+60
| | | | | | | | summary
* | Complete What's New in Python 3.3.Victor Stinner2012-08-051-18/+81
| |
* | Issue #15548: Update and complete What's New in Python 3.3, especially the ↵Victor Stinner2012-08-051-73/+82
| | | | | | | | "os" section
* | Update the What's New details for importlib based on doc/ABC changes.Brett Cannon2012-08-021-5/+19
| |
* | Address substantially all of Eric Snow's comments in issue #15295, except forBarry Warsaw2012-07-301-0/+2
| | | | | | | | those which now have additional XXX's here. I'll get to those later. :)
* | Update the pkgutil porting section in What's New. This should cause ↵Nick Coghlan2012-07-151-5/+7
| | | | | | | | significantly fewer problems after today's updates
* | Issue #15167 (as part of #13959): imp.get_magic() is no implemented inBrett Cannon2012-07-091-0/+3
| | | | | | | | Lib/imp.py.
* | Add a note about pkgutil and how some things do not work in the face of PEP ↵Brett Cannon2012-07-091-1/+7
| | | | | | | | 302 permeating throughout import.
* | Add a blurb about PEP 412Antoine Pitrou2012-07-071-0/+12
| |
* | Added hmac.compare_digest to whatsnewChristian Heimes2012-06-261-0/+9
| |
* | 3.3 whatsnew: Comment out the section about new POSIX *at functions etc.; ↵Georg Brandl2012-06-261-68/+70
| | | | | | | | has to be rewritten later.
* | What's new: Add myself as the contributor of issue 12170Petri Lehtinen2012-06-261-1/+1
| |
* | Add a couple of what's new entries.Antoine Pitrou2012-06-241-0/+13
| |
* | Fix statement.Antoine Pitrou2012-06-241-2/+1
| |