Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | adverb | Benjamin Peterson | 2009-12-15 | 1 | -1/+1 | |
| | ||||||
* | Clarify phrasing that explains that there are currently two branches. | R. David Murray | 2009-12-14 | 1 | -5/+5 | |
| | ||||||
* | reorganized the distutils doc a bit : the MANIFEST.in template system has ↵ | Tarek Ziadé | 2009-12-13 | 2 | -88/+98 | |
| | | | | its own section now. This is easier to find and follow | |||||
* | avoid having to update this statement all the time | Benjamin Peterson | 2009-12-13 | 1 | -7/+6 | |
| | ||||||
* | add 2.6.x point releases | Benjamin Peterson | 2009-12-13 | 1 | -0/+6 | |
| | ||||||
* | Issue #3366: Add lgamma function to math module. | Mark Dickinson | 2009-12-11 | 1 | -0/+8 | |
| | ||||||
* | Add a reverse() method to collections.deque(). | Raymond Hettinger | 2009-12-10 | 1 | -0/+5 | |
| | ||||||
* | Issue #7457: added a read_pkg_file method to ↵ | Tarek Ziadé | 2009-12-08 | 2 | -0/+46 | |
| | | | | distutils.dist.DistributionMetadata so we can read back PKG-INFO files | |||||
* | Typo fix; grammar fix | Andrew M. Kuchling | 2009-12-08 | 1 | -3/+3 | |
| | ||||||
* | #7177: clarify the potential PIPE deadlock warnings | Philip Jenvey | 2009-12-03 | 1 | -6/+8 | |
| | ||||||
* | Issue #7333: The `posix` module gains an `initgroups()` function providing | Antoine Pitrou | 2009-12-02 | 1 | -0/+9 | |
| | | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone. | |||||
* | Markup fixes | Andrew M. Kuchling | 2009-12-02 | 1 | -3/+3 | |
| | ||||||
* | Fix versions and spacing. | Georg Brandl | 2009-11-28 | 1 | -4/+10 | |
| | ||||||
* | fix typo | Gregory P. Smith | 2009-11-27 | 1 | -2/+2 | |
| | ||||||
* | Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. | Martin v. Löwis | 2009-11-27 | 1 | -4/+30 | |
| | ||||||
* | Issue #6845: Add restart support for binary upload in ftplib. The | Antoine Pitrou | 2009-11-27 | 1 | -2/+5 | |
| | | | | | | | `storbinary()` method of FTP and FTP_TLS objects gains an optional `rest` argument. Patch by Pablo Mouzo. (note: the patch also adds a test for the rest argument in retrbinary()) | |||||
* | #7400: typo. | Georg Brandl | 2009-11-26 | 1 | -1/+1 | |
| | ||||||
* | Forgot to add a `versionadded` tag | Antoine Pitrou | 2009-11-25 | 1 | -0/+2 | |
| | ||||||
* | Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ↵ | Antoine Pitrou | 2009-11-25 | 1 | -0/+10 | |
| | | | | | | returning the total number of seconds in the duration. Patch by Brian Quinlan. | |||||
* | Fix some documentation examples involving the repr of a float. | Mark Dickinson | 2009-11-24 | 8 | -19/+22 | |
| | ||||||
* | Issue #7117, continued: Remove substitution of %g-style formatting for | Mark Dickinson | 2009-11-23 | 1 | -7/+3 | |
| | | | | | %f-style formatting, which used to occur at high precision. Float formatting should now be consistent between 2.7 and 3.1. | |||||
* | #7345: fix arguments of formatyear(). | Georg Brandl | 2009-11-23 | 1 | -2/+2 | |
| | ||||||
* | Issue #7369: Fibonacci series should start at 0 in tutorial example. | Mark Dickinson | 2009-11-23 | 1 | -9/+9 | |
| | ||||||
* | issue5738: The distribution example was confusing, and out of date. It's too ↵ | Jesse Noller | 2009-11-21 | 2 | -371/+0 | |
| | | | | large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing. | |||||
* | Issue 7363: fix indentation in socketserver udpserver example. | R. David Murray | 2009-11-20 | 1 | -3/+3 | |
| | ||||||
* | Fix docstrings for itertools combinatoric functions. | Raymond Hettinger | 2009-11-19 | 1 | -2/+2 | |
| | ||||||
* | Mention Giampolo R's new FTP TLS support in the what's new file | Antoine Pitrou | 2009-11-18 | 1 | -0/+6 | |
| | ||||||
* | Fix markup. | Georg Brandl | 2009-11-18 | 1 | -5/+4 | |
| | ||||||
* | upcase Python | Georg Brandl | 2009-11-18 | 1 | -1/+1 | |
| | ||||||
* | Make separate section for deprecations in 2.7 whatsnew. | Georg Brandl | 2009-11-18 | 1 | -2/+10 | |
| | ||||||
* | Make separate section for deprecations in 2.6 whatsnew. | Georg Brandl | 2009-11-18 | 1 | -62/+71 | |
| | ||||||
* | #7302: fix link. | Georg Brandl | 2009-11-16 | 1 | -1/+1 | |
| | ||||||
* | Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using | Antoine Pitrou | 2009-11-15 | 1 | -0/+58 | |
| | | | | TLS or SSL. Patch by Giampaolo Rodola'. | |||||
* | Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, | Mark Dickinson | 2009-11-15 | 2 | -0/+32 | |
| | | | | PyFormat_FromStringV and PyErr_Format. | |||||
* | Issue #4969: The mimetypes module now reads the MIME database from | Antoine Pitrou | 2009-11-15 | 1 | -3/+19 | |
| | | | | the registry under Windows. Patch by Gabriel Genellina. | |||||
* | Issue #6816: expose the zipfile and directory execution mechanism to Python ↵ | Nick Coghlan | 2009-11-15 | 1 | -44/+97 | |
| | | | | code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation. | |||||
* | Fix terminology. | Georg Brandl | 2009-11-14 | 1 | -1/+1 | |
| | ||||||
* | use Sphinx 0.6.3 | Benjamin Peterson | 2009-11-13 | 2 | -2/+2 | |
| | ||||||
* | revert r76243; I was right, actually :) | Benjamin Peterson | 2009-11-13 | 1 | -4/+4 | |
| | ||||||
* | never mind about eval mode in this case | Benjamin Peterson | 2009-11-13 | 1 | -4/+4 | |
| | ||||||
* | fix several compile() issues by translating newlines in the tokenizer | Benjamin Peterson | 2009-11-12 | 1 | -5/+8 | |
| | ||||||
* | fix highlight in the datetime example | Ezio Melotti | 2009-11-12 | 1 | -2/+2 | |
| | ||||||
* | Give the profile module a module directive. | Georg Brandl | 2009-11-12 | 1 | -0/+2 | |
| | ||||||
* | Show example of how to make a sorted dictionary | Raymond Hettinger | 2009-11-10 | 1 | -0/+22 | |
| | ||||||
* | Update the FAQ entry that explains that assignments in the local scope | R. David Murray | 2009-11-10 | 1 | -33/+71 | |
| | | | | shadow variables in the outer scope (issue 7290). | |||||
* | Remove redundant sentence. | R. David Murray | 2009-11-09 | 1 | -7/+6 | |
| | ||||||
* | discuss how to use -p | Benjamin Peterson | 2009-11-09 | 1 | -0/+8 | |
| | ||||||
* | #7271: fix typo. | Georg Brandl | 2009-11-07 | 1 | -1/+1 | |
| | ||||||
* | #7259: show correct equivalent for operator.i* operations in docstring; fix ↵ | Georg Brandl | 2009-11-04 | 1 | -87/+89 | |
| | | | | minor issues in operator docs. | |||||
* | #7256: add versionadded tags for functions copied from cgi. | Georg Brandl | 2009-11-03 | 1 | -0/+7 | |
| |