Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #2125: Add GetInteger and GetString methods for | Martin v. Löwis | 2008-06-02 | 3 | -0/+63 |
| | | | | msilib.Record objects. | ||||
* | Fix issue 2782: be less strict about the format string type in strftime. | Gregory P. Smith | 2008-06-02 | 3 | -21/+32 |
| | | | | | Accept unicode and anything else ParseTuple "s#" can deal with. This matches the time.strftime behavior. | ||||
* | Adds a Thread.getIdent() method to provide the _get_ident() value for | Gregory P. Smith | 2008-06-01 | 4 | -2/+28 |
| | | | | any given threading.Thread object. feature request issue 2871. | ||||
* | Make the _H #define's match the header file names. Fix comments to | Gregory P. Smith | 2008-06-01 | 2 | -8/+8 |
| | | | | mention the correct type names. | ||||
* | Deprecate htmllib and sgmllib for 3.0. | Georg Brandl | 2008-06-01 | 8 | -8/+26 |
| | |||||
* | Generate pydoc's topic help from the reST docs via Sphinx' | Georg Brandl | 2008-06-01 | 5 | -136/+284 |
| | | | | new text writer. | ||||
* | Spaces vs. tabs. | Georg Brandl | 2008-06-01 | 1 | -1/+1 |
| | |||||
* | add a warning about bgen being removed | Benjamin Peterson | 2008-06-01 | 2 | -0/+3 |
| | |||||
* | Fix test_sys. | Robert Schuppenies | 2008-06-01 | 1 | -2/+0 |
| | |||||
* | Fix test_descrtut. | Georg Brandl | 2008-06-01 | 1 | -0/+1 |
| | |||||
* | Some style nits. Also clarify in the docstrings what __sizeof__ does. | Georg Brandl | 2008-06-01 | 7 | -18/+18 |
| | |||||
* | 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 | 9 | -2/+271 |
| | |||||
* | Typo: encoding -> codeset. | Martin v. Löwis | 2008-06-01 | 1 | -1/+1 |
| | |||||
* | Move sys_stream and sys_isatty out of the have-langinfo block. | Martin v. Löwis | 2008-06-01 | 1 | -1/+1 |
| | |||||
* | New environment variable PYTHONIOENCODING. | Martin v. Löwis | 2008-06-01 | 10 | -52/+153 |
| | |||||
* | Fixed rowcount for SELECT statements. They're -1 now (again), for better ↵ | Gerhard Häring | 2008-05-31 | 3 | -15/+20 |
| | | | | DB-API 2.0 compliance. | ||||
* | #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 bdist_wininst --user-access-control for win2k | Mark Hammond | 2008-05-31 | 5 | -7/+19 |
| | |||||
* | Implement heapq in terms of less-than (to match list.sort()). | Raymond Hettinger | 2008-05-31 | 3 | -20/+36 |
| | |||||
* | Update the locale module alias table. | Marc-André Lemburg | 2008-05-30 | 2 | -19/+163 |
| | | | | Closes #3011. | ||||
* | 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 |
| | |||||
* | * Mark intermedidate computes values (hi, lo, yr) as volatile. | Raymond Hettinger | 2008-05-30 | 1 | -19/+31 |
| | | | | | | | * Expand comments. * Swap variable names in the sum_exact code so that x and y are consistently chosen as the larger and smaller magnitude values respectively. | ||||
* | Refactor and clean up str.format() code (and helpers) in advance of ↵ | Eric Smith | 2008-05-30 | 15 | -157/+176 |
| | | | | optimizations. | ||||
* | #2999: fix name of third parameter in unicode.replace()'s docstring. | Georg Brandl | 2008-05-30 | 1 | -3/+3 |
| | |||||
* | Issue 2903: Add __name__ in globals for namedtuple namespace. | Raymond Hettinger | 2008-05-30 | 1 | -2/+3 |
| | |||||
* | Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics ↵ | Raymond Hettinger | 2008-05-30 | 1 | -0/+4 |
| | | | | what was done to dictionaries in r59223. | ||||
* | Issue 2784: fix leaks in exception exit. | Raymond Hettinger | 2008-05-30 | 1 | -2/+2 |
| | |||||
* | Fix typo in testSum | Mark Dickinson | 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 |
| | |||||
* | Turn off debugging output for building bsddb. | Brett Cannon | 2008-05-29 | 1 | -2/+3 |
| | |||||
* | ctypes NULL function pointers have a boolean False value now. | Thomas Heller | 2008-05-29 | 3 | -21/+32 |
| | |||||
* | Fix compiler warning. | Thomas Heller | 2008-05-29 | 1 | -1/+1 |
| | |||||
* | Fixed the semantic of timeout for socket.create_connection and | Facundo Batista | 2008-05-29 | 24 | -179/+230 |
| | | | | | | 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, :) | ||||
* | Revert #2990 patch; it's not necessary as Armin showed. | Georg Brandl | 2008-05-29 | 1 | -7/+5 |
| | |||||
* | Fix two typos. | Raymond Hettinger | 2008-05-29 | 1 | -2/+2 |
| | |||||
* | #2985: allow i8 in XMLRPC responses. | Georg Brandl | 2008-05-29 | 2 | -2/+6 |
| | |||||
* | #2988: add note about catching CookieError when parsing untrusted cookie data. | Georg Brandl | 2008-05-29 | 1 | -0/+6 |
| | |||||
* | #2906: accept lists for options, and some cosmetic fixes in Tkinter. | Georg Brandl | 2008-05-29 | 1 | -15/+19 |
| | |||||
* | 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 | 5 | -2/+22 |
| | | | | Works on issue #2877. Thanks Quentin Gallet-Gilles for the patch. | ||||
* | #2990: prevent inconsistent state while updating method cache. | Georg Brandl | 2008-05-28 | 1 | -5/+7 |
| | |||||
* | fix spelling | Benjamin Peterson | 2008-05-28 | 1 | -2/+2 |
| | |||||
* | #2989: add PyType_Modified(). | Georg Brandl | 2008-05-28 | 4 | -12/+23 |
| | |||||
* | bdist_wininst now works correctly when both --skip-build and --plat-name are ↵ | Mark Hammond | 2008-05-28 | 1 | -0/+6 |
| | | | | specified. | ||||
* | update tutorial function with more appropiate one from Eric Smith | Benjamin Peterson | 2008-05-28 | 1 | -2/+2 |
| |