summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
* What's New in Python 3.2: update Unicode sectionVictor Stinner2010-10-291-10/+21
|
* Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer)Nick Coghlan2010-10-241-0/+7
|
* Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-2/+1
| | | | test_multiprocessing's misbehaviour.
* Update what's newAntoine Pitrou2010-10-221-1/+2
|
* Note the resolution of issue 9778.Skip Montanaro2010-10-171-0/+6
|
* Fix sphinx role markups.Senthil Kumaran2010-10-151-2/+2
|
* Issue #9992: Remove PYTHONFSENCODING environment variable.Victor Stinner2010-10-131-6/+0
|
* Update whatsnew about pickle optimizationsAntoine Pitrou2010-10-121-5/+2
|
* What's new entry for email 5.1.R. David Murray2010-10-081-0/+28
|
* Update what's newAntoine Pitrou2010-10-081-0/+5
|
* More new things in what's newAntoine Pitrou2010-10-061-0/+23
|
* Migrate to Sphinx 1.0 C language constructs.Georg Brandl2010-10-069-213/+213
|
* Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcherGiampaolo Rodolà2010-10-041-0/+8
|
* #9911: doc copyedits.Georg Brandl2010-09-211-1/+1
|
* Move library changes to the right sectionAntoine Pitrou2010-09-151-14/+14
|
* Add entries to whatsnewAntoine Pitrou2010-09-151-1/+25
|
* #9210: remove --with-wctype-functions configure option.Amaury Forgeot d'Arc2010-09-121-0/+5
| | | | | | | | The internal unicode database is now always used. (after 5 years: see http://mail.python.org/pipermail/python-dev/2004-December/050193.html )
* Document changes on mbcs encodingVictor Stinner2010-09-121-0/+7
|
* #4617: Previously it was illegal to delete a name from the localAmaury Forgeot d'Arc2010-09-101-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | namespace if it occurs as a free variable in a nested block. This limitation of the compiler has been lifted, and a new opcode introduced (DELETE_DEREF). This sample was valid in 2.6, but fails to compile in 3.x without this change:: >>> def f(): ... def print_error(): ... print(e) ... try: ... something ... except Exception as e: ... print_error() ... # implicit "del e" here This sample has always been invalid in Python, and now works:: >>> def outer(x): ... def inner(): ... return x ... inner() ... del x There is no need to bump the PYC magic number: the new opcode is used for code that did not compile before.
* Fix issue 9794: adds context manager protocol to socket.socket so that ↵Giampaolo Rodolà2010-09-081-0/+6
| | | | socket.create_connection() can be used with the 'with' statement.
* Fix typo in whatsnew (#9793)Éric Araujo2010-09-071-1/+1
|
* #6394: Add os.getppid() support for Windows.Amaury Forgeot d'Arc2010-09-071-0/+5
|
* Add stub entry for argparse.Georg Brandl2010-09-071-0/+2
|
* Fix markup nitsRaymond Hettinger2010-09-061-3/+3
|
* Remove redundant word.Georg Brandl2010-09-061-1/+1
|
* Fix nitsRaymond Hettinger2010-09-061-7/+7
|
* More updates to whatsnew3.2Raymond Hettinger2010-09-061-46/+91
|
* link to docsBenjamin Peterson2010-09-061-2/+2
|
* Fix typos and wording in what’s new 3.2.Éric Araujo2010-09-051-27/+28
| | | | | | | | | | | - The entry about shutil.copytree is just a revert of r84524 which looks like an unfinished edition. - The use of gender-neutral language (s/his/their/) removes the implicit assumption that programmer == male (change agreed by Antoine). - Other changes should be uncontroversial fixes. I haven’t rewrapped under 80 lines to keep the diffs readable; I’ll rewrap later.
* Rewrap and consistency fixes.Georg Brandl2010-09-051-175/+175
|
* Fill-in sqlite3 stubsRaymond Hettinger2010-09-051-7/+8
|
* Add example of ftplib's new context manager.Raymond Hettinger2010-09-051-4/+19
|
* Add PEP 391 to whatsnewRaymond Hettinger2010-09-051-0/+43
|
* More updates to whatsnew.Raymond Hettinger2010-09-051-5/+13
|
* Add an exampleRaymond Hettinger2010-09-051-1/+6
|
* More updates to whatsnewRaymond Hettinger2010-09-051-2/+28
|
* Update whatsnew for Pep3149.Raymond Hettinger2010-09-051-4/+27
|
* Update whatsnew for Pep3147.Raymond Hettinger2010-09-041-1/+54
|
* Adopt more descriptive attribute names as suggested on python-dev.Raymond Hettinger2010-09-041-3/+3
|
* Add an entry in whatsnew about the PyCObject -> PyCapsule move.Amaury Forgeot d'Arc2010-09-031-0/+4
| | | | (It seems that I am the first SWIG user to try python 3.2...)
* Make PEP section a bit less ugly and at least list implemented PEPs.Georg Brandl2010-09-031-2/+7
|
* PYTHONFSENCODING is not available on Windows or Mac OS XVictor Stinner2010-08-191-1/+3
|
* Create os.fsdecode(): decode from the filesystem encoding with surrogateescapeVictor Stinner2010-08-191-2/+5
| | | | | | | | error handler, or strict error handler on Windows. * Rewrite os.fsencode() documentation * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING environment variable
* what's new 3.2: use :mod:Victor Stinner2010-08-181-4/+4
|
* Fix typoÉric Araujo2010-08-181-1/+1
|
* #7647: add ST_RDONLY, ST_NOSUID constants to os module.Andrew M. Kuchling2010-08-181-0/+4
| | | | (Also fix a name ordering in the ACKS file.)
* Issue #8622: Add PYTHONFSENCODING environment variable to override theVictor Stinner2010-08-181-0/+9
| | | | | | filesystem encoding. initfsencoding() displays also a better error message if get_codeset() failed.
* fix issue #8807: adds a context parameter to POP3_SSL class.Giampaolo Rodolà2010-08-171-0/+7
|
* fix issue #8866: parameters passed to socket.getaddrinfo can now be ↵Giampaolo Rodolà2010-08-171-0/+4
| | | | specified as single keyword arguments.
* Clarify whatsnew entry for short float repr: roundtripping is not a new ↵Mark Dickinson2010-08-151-4/+6
| | | | feature in 2.7.