Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Generate pydoc's topic help from the reST docs via Sphinx' | Georg Brandl | 2008-06-01 | 3 | -0/+76 |
| | | | | new text writer. | ||||
* | Add plain text make target. | Georg Brandl | 2008-06-01 | 2 | -0/+7 |
| | |||||
* | Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. | Robert Schuppenies | 2008-06-01 | 1 | -0/+10 |
| | |||||
* | New environment variable PYTHONIOENCODING. | Martin v. Löwis | 2008-06-01 | 3 | -0/+22 |
| | |||||
* | #3005: add explaining sentence to easydialogs docs. | Georg Brandl | 2008-05-31 | 1 | -4/+6 |
| | |||||
* | #3010: clarification about stdin/use_rawinput. | Georg Brandl | 2008-05-31 | 1 | -1/+6 |
| | |||||
* | Added a note to [] that special forms & special chars lose their meaning | Mark Summerfield | 2008-05-31 | 1 | -0/+6 |
| | | | | and backrefs can't be used inside [] | ||||
* | fix grammar | Benjamin Peterson | 2008-05-30 | 1 | -1/+1 |
| | |||||
* | Better quote with single quotes. | Georg Brandl | 2008-05-30 | 1 | -2/+2 |
| | |||||
* | getloadavg() is not available on Windows. | Georg Brandl | 2008-05-30 | 1 | -1/+1 |
| | |||||
* | Note that UserList and UserString were moved to 'collections' in 3.0. | Brett Cannon | 2008-05-29 | 1 | -0/+12 |
| | |||||
* | Fixed the semantic of timeout for socket.create_connection and | Facundo Batista | 2008-05-29 | 7 | -27/+28 |
| | | | | | | all the upper level libraries that use it, including urllib2. Added and fixed some tests, and changed docs correspondingly. Thanks to John J Lee for the patch and the pusing, :) | ||||
* | #2988: add note about catching CookieError when parsing untrusted cookie data. | Georg Brandl | 2008-05-29 | 1 | -0/+6 |
| | |||||
* | Two fixes in bytearray docs. | Georg Brandl | 2008-05-29 | 1 | -1/+5 |
| | |||||
* | UserString.MutableString has been removed in Python 3.0. | Brett Cannon | 2008-05-29 | 1 | -0/+3 |
| | | | | Works on issue #2877. Thanks Quentin Gallet-Gilles for the patch. | ||||
* | fix spelling | Benjamin Peterson | 2008-05-28 | 1 | -2/+2 |
| | |||||
* | #2989: add PyType_Modified(). | Georg Brandl | 2008-05-28 | 1 | -1/+10 |
| | |||||
* | update tutorial function with more appropiate one from Eric Smith | Benjamin Peterson | 2008-05-28 | 1 | -2/+2 |
| | |||||
* | fix minor grammar typo | Benjamin Peterson | 2008-05-26 | 1 | -1/+2 |
| | |||||
* | take Brett's advice on a few warnings | Benjamin Peterson | 2008-05-26 | 1 | -6/+7 |
| | |||||
* | warn about some members of the commands module | Benjamin Peterson | 2008-05-26 | 1 | -1/+7 |
| | |||||
* | add PyByteArray docs | Benjamin Peterson | 2008-05-26 | 2 | -0/+75 |
| | |||||
* | Add renaming notices to 3.0 http package members. | Georg Brandl | 2008-05-26 | 6 | -5/+30 |
| | |||||
* | fix a minor typo | Benjamin Peterson | 2008-05-26 | 1 | -1/+1 |
| | |||||
* | note that PyString and has been aliased to PyBytes | Benjamin Peterson | 2008-05-26 | 1 | -2/+6 |
| | |||||
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 4 | -15/+15 |
| | |||||
* | some updates to string formatting section in whatsnew | Benjamin Peterson | 2008-05-26 | 1 | -4/+7 |
| | |||||
* | Add renaming notices to xmlrpc modules. | Georg Brandl | 2008-05-26 | 3 | -2/+15 |
| | |||||
* | Add renaming notices to 2.6 dbm module docs. | Georg Brandl | 2008-05-26 | 6 | -6/+28 |
| | |||||
* | update the tutorial to use str.format | Benjamin Peterson | 2008-05-26 | 7 | -32/+81 |
| | |||||
* | rename the section about new formatting 'new-string-formatting' | Benjamin Peterson | 2008-05-25 | 1 | -5/+5 |
| | |||||
* | Add renaming notices to thread and dummy_thread. | Georg Brandl | 2008-05-25 | 2 | -2/+12 |
| | |||||
* | Hint about _winreg renaming in the docs. | Georg Brandl | 2008-05-25 | 1 | -0/+5 |
| | |||||
* | ConfigParser renaming reversal part 3: move module into place and adapt imports. | Georg Brandl | 2008-05-25 | 3 | -43/+39 |
| | |||||
* | Queue renaming reversal part 3: move module into place and | Georg Brandl | 2008-05-25 | 5 | -28/+26 |
| | | | | change imports and other references. Closes #2925. | ||||
* | Correct the url to the external bsddb.db docs (likely to be integrated | Gregory P. Smith | 2008-05-24 | 1 | -3/+3 |
| | | | | soon anyways?) | ||||
* | socketserver renaming reversal part 3: move the module into the right | Georg Brandl | 2008-05-24 | 7 | -359/+361 |
| | | | | place and fix all references to it. Closes #2926. | ||||
* | Mention that the leaking of variables from list comprehensions | Martin v. Löwis | 2008-05-23 | 1 | -4/+3 |
| | | | | is fixed in 3.0. | ||||
* | Fix typo | Raymond Hettinger | 2008-05-23 | 1 | -1/+1 |
| | |||||
* | Issue 2909: show how to name unpacked fields. | Raymond Hettinger | 2008-05-23 | 1 | -0/+10 |
| | |||||
* | Revert the renaming of repr to reprlib. | Brett Cannon | 2008-05-23 | 3 | -13/+9 |
| | |||||
* | Docs for Issue 2819. | Raymond Hettinger | 2008-05-23 | 1 | -0/+6 |
| | |||||
* | Add a note about the renaming of test.test_support in 3.0. | Brett Cannon | 2008-05-20 | 1 | -0/+8 |
| | |||||
* | Patch #1775025: allow opening zipfile members via ZipInfo instances. | Georg Brandl | 2008-05-20 | 1 | -14/+21 |
| | | | | Patch by Graham Horler. | ||||
* | Patch #2488: Add sys.maxsize. | Martin v. Löwis | 2008-05-20 | 1 | -0/+5 |
| | |||||
* | Revert copy_reg -> copyreg rename. | Georg Brandl | 2008-05-20 | 5 | -13/+10 |
| | |||||
* | Standardize renaming notes. | Georg Brandl | 2008-05-20 | 2 | -3/+7 |
| | |||||
* | Add notes that tkinter modules will be renamed. | Georg Brandl | 2008-05-20 | 5 | -1/+28 |
| | |||||
* | Tkinter rename reversal: remove tkinter package, adapt imports and docs. | Georg Brandl | 2008-05-20 | 6 | -154/+90 |
| | |||||
* | revert creation of the html.entities and html.parser modules | Fred Drake | 2008-05-20 | 4 | -57/+52 |
| | | | | (http://bugs.python.org/issue2882) |