Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add example, tighten text, and minor clean-ups. | Raymond Hettinger | 2010-11-30 | 1 | -4/+5 |
| | |||||
* | Issue 9873: the URL parsing functions now accept ASCII encoded byte ↵ | Nick Coghlan | 2010-11-30 | 1 | -0/+8 |
| | | | | sequences in addition to character strings | ||||
* | Neaten-up a bit. | Raymond Hettinger | 2010-11-30 | 1 | -5/+3 |
| | |||||
* | Issue 10586: change the new functools.lru_cache implementation to expose the ↵ | Nick Coghlan | 2010-11-30 | 1 | -0/+2 |
| | | | | maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. | ||||
* | Typo fix. | Georg Brandl | 2010-11-26 | 1 | -2/+2 |
| | |||||
* | #10526: fix typo. | Georg Brandl | 2010-11-26 | 1 | -1/+1 |
| | |||||
* | #9424: add a DeprecationWarning for assertEquals, assertNotEquals, ↵ | Ezio Melotti | 2010-11-22 | 1 | -0/+12 |
| | | | | assertAlmostEquals, assertNotAlmostEquals, and assert_ | ||||
* | Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho ↵ | Nick Coghlan | 2010-11-21 | 1 | -0/+8 |
| | | | | Eckhardt | ||||
* | Add stub for PEP 3148. | Georg Brandl | 2010-11-16 | 1 | -0/+5 |
| | |||||
* | #10321: Add support for sending binary DATA and Message objects to smtplib | R. David Murray | 2010-11-08 | 1 | -0/+8 |
| | |||||
* | More what's new | Antoine Pitrou | 2010-11-05 | 1 | -0/+6 |
| | |||||
* | Update 3.2 what's new | Antoine Pitrou | 2010-11-05 | 1 | -6/+43 |
| | |||||
* | What's New in Python 3.2: update Unicode section | Victor Stinner | 2010-10-29 | 1 | -10/+21 |
| | |||||
* | Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer) | Nick Coghlan | 2010-10-24 | 1 | -0/+7 |
| | |||||
* | Revert r85797 (and r85798): it broke the Windows buildbots because of | Antoine Pitrou | 2010-10-22 | 1 | -2/+1 |
| | | | | test_multiprocessing's misbehaviour. | ||||
* | Update what's new | Antoine Pitrou | 2010-10-22 | 1 | -1/+2 |
| | |||||
* | Note the resolution of issue 9778. | Skip Montanaro | 2010-10-17 | 1 | -0/+6 |
| | |||||
* | Fix sphinx role markups. | Senthil Kumaran | 2010-10-15 | 1 | -2/+2 |
| | |||||
* | Issue #9992: Remove PYTHONFSENCODING environment variable. | Victor Stinner | 2010-10-13 | 1 | -6/+0 |
| | |||||
* | Update whatsnew about pickle optimizations | Antoine Pitrou | 2010-10-12 | 1 | -5/+2 |
| | |||||
* | What's new entry for email 5.1. | R. David Murray | 2010-10-08 | 1 | -0/+28 |
| | |||||
* | Update what's new | Antoine Pitrou | 2010-10-08 | 1 | -0/+5 |
| | |||||
* | More new things in what's new | Antoine Pitrou | 2010-10-06 | 1 | -0/+23 |
| | |||||
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 9 | -213/+213 |
| | |||||
* | Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcher | Giampaolo Rodolà | 2010-10-04 | 1 | -0/+8 |
| | |||||
* | #9911: doc copyedits. | Georg Brandl | 2010-09-21 | 1 | -1/+1 |
| | |||||
* | Move library changes to the right section | Antoine Pitrou | 2010-09-15 | 1 | -14/+14 |
| | |||||
* | Add entries to whatsnew | Antoine Pitrou | 2010-09-15 | 1 | -1/+25 |
| | |||||
* | #9210: remove --with-wctype-functions configure option. | Amaury Forgeot d'Arc | 2010-09-12 | 1 | -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 encoding | Victor Stinner | 2010-09-12 | 1 | -0/+7 |
| | |||||
* | #4617: Previously it was illegal to delete a name from the local | Amaury Forgeot d'Arc | 2010-09-10 | 1 | -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-08 | 1 | -0/+6 |
| | | | | socket.create_connection() can be used with the 'with' statement. | ||||
* | Fix typo in whatsnew (#9793) | Éric Araujo | 2010-09-07 | 1 | -1/+1 |
| | |||||
* | #6394: Add os.getppid() support for Windows. | Amaury Forgeot d'Arc | 2010-09-07 | 1 | -0/+5 |
| | |||||
* | Add stub entry for argparse. | Georg Brandl | 2010-09-07 | 1 | -0/+2 |
| | |||||
* | Fix markup nits | Raymond Hettinger | 2010-09-06 | 1 | -3/+3 |
| | |||||
* | Remove redundant word. | Georg Brandl | 2010-09-06 | 1 | -1/+1 |
| | |||||
* | Fix nits | Raymond Hettinger | 2010-09-06 | 1 | -7/+7 |
| | |||||
* | More updates to whatsnew3.2 | Raymond Hettinger | 2010-09-06 | 1 | -46/+91 |
| | |||||
* | link to docs | Benjamin Peterson | 2010-09-06 | 1 | -2/+2 |
| | |||||
* | Fix typos and wording in what’s new 3.2. | Éric Araujo | 2010-09-05 | 1 | -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 Brandl | 2010-09-05 | 1 | -175/+175 |
| | |||||
* | Fill-in sqlite3 stubs | Raymond Hettinger | 2010-09-05 | 1 | -7/+8 |
| | |||||
* | Add example of ftplib's new context manager. | Raymond Hettinger | 2010-09-05 | 1 | -4/+19 |
| | |||||
* | Add PEP 391 to whatsnew | Raymond Hettinger | 2010-09-05 | 1 | -0/+43 |
| | |||||
* | More updates to whatsnew. | Raymond Hettinger | 2010-09-05 | 1 | -5/+13 |
| | |||||
* | Add an example | Raymond Hettinger | 2010-09-05 | 1 | -1/+6 |
| | |||||
* | More updates to whatsnew | Raymond Hettinger | 2010-09-05 | 1 | -2/+28 |
| | |||||
* | Update whatsnew for Pep3149. | Raymond Hettinger | 2010-09-05 | 1 | -4/+27 |
| | |||||
* | Update whatsnew for Pep3147. | Raymond Hettinger | 2010-09-04 | 1 | -1/+54 |
| |