| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add versionadded tags to new math functions. | Georg Brandl | 2008-06-18 | 1 | -6/+12 |
| | | |||||
| * | Typo fix | Mark Dickinson | 2008-06-18 | 1 | -1/+1 |
| | | |||||
| * | Typo fixes | Andrew M. Kuchling | 2008-06-13 | 1 | -2/+2 |
| | | |||||
| * | Clarification. | Georg Brandl | 2008-06-13 | 1 | -3/+3 |
| | | |||||
| * | add py3k warnings to rfc822 | Benjamin Peterson | 2008-06-12 | 1 | -1/+2 |
| | | |||||
| * | deprecated mimetools | Benjamin Peterson | 2008-06-12 | 1 | -1/+2 |
| | | |||||
| * | Markup fixes, thanks Georg for the help. | Thomas Heller | 2008-06-11 | 1 | -47/+70 |
| | | | | | Document ctypes.util.find_library() and ctypes.util.find_msvcrt(). | ||||
| * | Add versionadded marker to ctypes.c_longdouble. | Thomas Heller | 2008-06-11 | 1 | -0/+1 |
| | | |||||
| * | Add future_builtins.ascii(). | Georg Brandl | 2008-06-11 | 1 | -0/+8 |
| | | |||||
| * | Smaller doc fixes. | Thomas Heller | 2008-06-11 | 1 | -19/+16 |
| | | |||||
| * | More doc fixes. | Thomas Heller | 2008-06-11 | 1 | -15/+6 |
| | | |||||
| * | Markup fixes, spelling corrections, and better wordings. Hopefully. | Thomas Heller | 2008-06-11 | 1 | -9/+8 |
| | | |||||
| * | Fix typos. | Georg Brandl | 2008-06-11 | 1 | -3/+2 |
| | | |||||
| * | add aliases to threading module | Benjamin Peterson | 2008-06-11 | 1 | -3/+17 |
| | | |||||
| * | give the threading API PEP 8 names | Benjamin Peterson | 2008-06-11 | 1 | -19/+19 |
| | | |||||
| * | Multi-arg form for set.difference() and set.difference_update(). | Raymond Hettinger | 2008-06-11 | 1 | -6/+12 |
| | | |||||
| * | Fix markup. | Thomas Heller | 2008-06-11 | 1 | -20/+30 |
| | | | | | Document the new 'offset' parameter for the 'ctypes.byref' function. | ||||
| * | add the multiprocessing package to fulfill PEP 371 | Benjamin Peterson | 2008-06-11 | 2 | -0/+2109 |
| | | |||||
| * | Update numbers doc for the Integral simplification. | Raymond Hettinger | 2008-06-11 | 1 | -4/+4 |
| | | |||||
| * | Documented the new AST constructor. | Armin Ronacher | 2008-06-10 | 1 | -0/+5 |
| | | |||||
| * | Fix a formatting error in the ast documentation. | Armin Ronacher | 2008-06-10 | 1 | -1/+1 |
| | | |||||
| * | more markup fix. | Georg Brandl | 2008-06-10 | 1 | -9/+9 |
| | | |||||
| * | fix markup | Benjamin Peterson | 2008-06-10 | 1 | -5/+6 |
| | | |||||
| * | Add the "ast" module, containing helpers to ease use of the "_ast" classes. | Georg Brandl | 2008-06-10 | 3 | -86/+258 |
| | | |||||
| * | Applying updated patch from Issue 1736190, which addresses partial | Josiah Carlson | 2008-06-10 | 2 | -0/+26 |
| | | | | | | | issues in: 909005 and 17361001, as well as completely as possible issues 539444, 760475, 777588, 889153, 953599, 1025525, 1063924, and 658749. This patch also includes doc and test updates as necessary. | ||||
| * | Let set.intersection() and set.intersection_update() take multiple input ↵ | Raymond Hettinger | 2008-06-09 | 1 | -4/+10 |
| | | | | | arguments. | ||||
| * | Let set.union() and set.update() accept multiple inputs. | Raymond Hettinger | 2008-06-09 | 1 | -4/+10 |
| | | |||||
| * | Issue #2138: Add math.factorial(). | Raymond Hettinger | 2008-06-09 | 1 | -0/+4 |
| | | |||||
| * | Issue3065: Fixed pickling of named tuples. Added tests. | Raymond Hettinger | 2008-06-09 | 1 | -0/+3 |
| | | |||||
| * | Argh, I read it wrong. Reverted 64036 and added a clarifying remark. | Georg Brandl | 2008-06-08 | 1 | -2/+2 |
| | | |||||
| * | #3028: tokenize passes the physical line. | Georg Brandl | 2008-06-08 | 1 | -10/+9 |
| | | |||||
| * | capitalization nit | Benjamin Peterson | 2008-06-07 | 1 | -1/+1 |
| | | |||||
| * | Document the "st" API, to avoid confusion with the "new" AST. | Georg Brandl | 2008-06-07 | 1 | -78/+89 |
| | | | | | Add a note about using the new AST module. | ||||
| * | X-ref to numbers module. | Georg Brandl | 2008-06-07 | 1 | -3/+3 |
| | | |||||
| * | Backport docs for abc module to 2.6. | Georg Brandl | 2008-06-07 | 2 | -0/+196 |
| | | |||||
| * | Revert unwanted changes. | Georg Brandl | 2008-06-07 | 2 | -1/+86 |
| | | |||||
| * | Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() | Georg Brandl | 2008-06-07 | 3 | -91/+11 |
| | | | | | to ease standalone use of the algorithm. | ||||
| * | Document the new ctypes features. | Thomas Heller | 2008-06-06 | 1 | -6/+68 |
| | | | | | | It would be great if someone could review both sematics, markup, and spelling, and correct the versionadded and versionchanges markers. | ||||
| * | Markup fix. | Georg Brandl | 2008-06-06 | 1 | -2/+2 |
| | | |||||
| * | Document 'utc' parameter | Andrew M. Kuchling | 2008-06-05 | 1 | -3/+7 |
| | | |||||
| * | MacOS X: Enable 4-way universal builds | Ronald Oussoren | 2008-06-05 | 1 | -0/+24 |
| | | | | | | | | | | | | | | | | | | | This patch adds a new configure argument on OSX: --with-universal-archs=[32-bit|64-bit|all] When used with the --enable-universalsdk option this controls which CPU architectures are includes in the framework. The default is 32-bit, meaning i386 and ppc. The most useful alternative is 'all', which includes all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64). This includes limited support for the Carbon bindings in 64-bit mode as well, limited because (a) I haven't done extensive testing and (b) a large portion of the Carbon API's aren't available in 64-bit mode anyway. I've also duplicated a feature of Apple's build of python: setting the environment variable 'ARCHFLAGS' controls the '-arch' flags used for building extensions using distutils. | ||||
| * | Complete revision of new turtle module's docs. | Georg Brandl | 2008-06-04 | 1 | -1783/+1669 |
| | | |||||
| * | Patch #1513695: New turtle module, with demos. | Martin v. Löwis | 2008-06-04 | 1 | -279/+1969 |
| | | |||||
| * | Patch #2125: Add GetInteger and GetString methods for | Martin v. Löwis | 2008-06-02 | 1 | -0/+13 |
| | | | | | msilib.Record objects. | ||||
| * | Adds a Thread.getIdent() method to provide the _get_ident() value for | Gregory P. Smith | 2008-06-01 | 1 | -0/+11 |
| | | | | | any given threading.Thread object. feature request issue 2871. | ||||
| * | Deprecate htmllib and sgmllib for 3.0. | Georg Brandl | 2008-06-01 | 2 | -3/+8 |
| | | |||||
| * | 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 | 1 | -0/+7 |
| | | |||||
| * | #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 |
| | | |||||
