Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #5864: format(1234.5, '.4') gives misleading result | Mark Dickinson | 2009-04-29 | 3 | -11/+112 | |
| | | | | (Backport of r72109 from py3k.) | |||||
* | run autoconf | Benjamin Peterson | 2009-04-29 | 1 | -1/+32 | |
| | ||||||
* | More aifc tests. | R. David Murray | 2009-04-29 | 1 | -7/+53 | |
| | ||||||
* | - configure.in: Don't error, when no --with-dbmliborder option is present | Matthias Klose | 2009-04-29 | 1 | -4/+2 | |
| | ||||||
* | - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify | Matthias Klose | 2009-04-29 | 2 | -5/+6 | |
| | | | | the order that backends for the dbm extension are checked. | |||||
* | - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify | Matthias Klose | 2009-04-29 | 4 | -33/+88 | |
| | | | | the order that backends for the dbm extension are checked. | |||||
* | Now that we've got a test_aifc, add a few tests. | R. David Murray | 2009-04-29 | 1 | -0/+30 | |
| | ||||||
* | Fix issue 2245. aifc now skips any chunk type it doesn't actually | R. David Murray | 2009-04-29 | 6 | -8/+28 | |
| | | | | | | | process instead of throwing errors for anything not in an explicit skip list. This is per this spec: http://www.cnpbagwell.com/aiff-c.txt. Spec reference and test sound file provided by Santiago Peresón, fix based on patch by Hiroaki Kawai. | |||||
* | Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore | Tarek Ziadé | 2009-04-29 | 2 | -1/+4 | |
| | ||||||
* | Make the doctests in the docs pass, except for those in the turtle module. | Georg Brandl | 2009-04-28 | 5 | -24/+28 | |
| | ||||||
* | Issue #4305: ctypes fails to build on mipsel-linux-gnu (detects mips | Thomas Heller | 2009-04-28 | 3 | -6/+8 | |
| | | | | instead of mipsel) | |||||
* | Remove spurious 'u'. | R. David Murray | 2009-04-28 | 1 | -1/+2 | |
| | ||||||
* | Various small fixups to the multiprocessing docs, mostly fixing and | R. David Murray | 2009-04-28 | 1 | -44/+64 | |
| | | | | | | | | | | enabling doctests that Sphinx can run, and fixing and disabling tests that Sphinx can't run. I hand checked every test not now marked as a doctest, and all except the two that have open bug reports against them now work, at least on Linux/trunk. (I did not look at the last example at all since there was already an open bug). I did not read the whole document with an editor's eye, but I did fix a few things I noticed while working on the tests. | |||||
* | Silence warning on Windows. | Eric Smith | 2009-04-28 | 1 | -1/+1 | |
| | ||||||
* | Issue #1734234: Massively speedup `unicodedata.normalize()` when the | Antoine Pitrou | 2009-04-27 | 5 | -1746/+2056 | |
| | | | | | string is already in normalized form, by performing a quick check beforehand. Original patch by Rauli Ruohonen. | |||||
* | Add example to the seealso section. | Raymond Hettinger | 2009-04-27 | 1 | -2/+9 | |
| | ||||||
* | Update spec version number. | Raymond Hettinger | 2009-04-27 | 1 | -1/+1 | |
| | ||||||
* | Issue #5853: calling a function of the mimetypes module from several threads | Antoine Pitrou | 2009-04-27 | 2 | -15/+17 | |
| | | | | | at once could hit the recursion limit if the mimetypes database hadn't been initialized before. | |||||
* | Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to ↵ | Eric Smith | 2009-04-27 | 15 | -303/+338 | |
| | | | | py3k. Should fix Windows buildbot errors. | |||||
* | Make sys.xxx variable references into links, note that print_last only | R. David Murray | 2009-04-27 | 1 | -28/+22 | |
| | | | | | | | | works when an exception gets to the interactive prompt, and update the examples after testing. The last one is now a valid Sphinx doctest, but of the preceding two one can't be made a doctest and the other one I'm postponing to 3.x because sphinx handles doctests as Unicode strings and that makes the 2.x output confusing. | |||||
* | #5840: dont claim we dont support TLS. | Georg Brandl | 2009-04-27 | 1 | -4/+3 | |
| | ||||||
* | #5848: small unittest doc patch. | Georg Brandl | 2009-04-27 | 1 | -3/+20 | |
| | ||||||
* | Demote warnings to notices, part 2: stuff that is 2.x-only. | Georg Brandl | 2009-04-27 | 20 | -65/+49 | |
| | ||||||
* | Demote warnings to notices where appropriate, following the goal that as few ↵ | Georg Brandl | 2009-04-27 | 21 | -41/+40 | |
| | | | | | | "red box" warnings should clutter the docs as possible. Part 1: stuff that gets merged to Py3k. | |||||
* | Remove ".. warning::" markup that doesnt contain warnings for users, rather ↵ | Georg Brandl | 2009-04-27 | 2 | -19/+8 | |
| | | | | todo items. | |||||
* | #5856: fix typo s in traceback example. | Georg Brandl | 2009-04-27 | 1 | -5/+4 | |
| | ||||||
* | Issue #5854: Updated __all__ to include some missing names and remove some ↵ | Vinay Sajip | 2009-04-27 | 2 | -6/+12 | |
| | | | | names which should not be exported. | |||||
* | Right click 'go to file/line' not working if spaces | Kurt B. Kaiser | 2009-04-26 | 2 | -25/+13 | |
| | | | | in path. Bug 5559. | |||||
* | Use test.test_support.EnvironmentVarGuard where tests change environment vars. | Walter Dörwald | 2009-04-26 | 6 | -56/+36 | |
| | ||||||
* | Fix typo in function name | Mark Dickinson | 2009-04-26 | 1 | -3/+3 | |
| | ||||||
* | Fix typo. | Walter Dörwald | 2009-04-26 | 1 | -1/+1 | |
| | ||||||
* | Backport r71967 changes from py3k to trunk. | Mark Dickinson | 2009-04-26 | 2 | -90/+78 | |
| | | | | (Internal plumbing changes for float parsing.) | |||||
* | Reset errno before both calls to PyOS_ascii_strtod, not just one. | Mark Dickinson | 2009-04-26 | 1 | -2/+2 | |
| | ||||||
* | Note that the caller is resposible for freeing the result of ↵ | Eric Smith | 2009-04-26 | 1 | -1/+2 | |
| | | | | PyOS_double_to_string. | |||||
* | Update pydoc topics. | Georg Brandl | 2009-04-26 | 1 | -28/+28 | |
| | ||||||
* | Move pydoc_topics module to its own subdirectory, so that no generated code ↵ | Georg Brandl | 2009-04-26 | 5 | -11/+11 | |
| | | | | is in Lib/. | |||||
* | Another file where the versions need to be up to date. | Georg Brandl | 2009-04-26 | 1 | -1/+1 | |
| | ||||||
* | Remove outdated TODO file. | Georg Brandl | 2009-04-26 | 1 | -6/+0 | |
| | ||||||
* | Note that the versions are also in README.txt. | Georg Brandl | 2009-04-26 | 1 | -0/+1 | |
| | ||||||
* | Update versions in instructions for manual set-up. | Georg Brandl | 2009-04-26 | 1 | -3/+9 | |
| | ||||||
* | Mostly formatting nits, and "and-ed together" -> "or-ed together" flags. | Georg Brandl | 2009-04-26 | 1 | -22/+23 | |
| | ||||||
* | Issue #4971: Fix titlecase for characters that are their own | Martin v. Löwis | 2009-04-26 | 3 | -7/+10 | |
| | | | | titlecase, but not their own uppercase. | |||||
* | Issue #5835, deprecate PyOS_ascii_formatd. | Eric Smith | 2009-04-25 | 9 | -66/+232 | |
| | | | | | | If anyone wants to clean up the documentation, feel free. It's my first documentation foray, and it's not that great. Will port to py3k with a different strategy. | |||||
* | Issue #4129: document int -> Py_ssize_t changes. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+133 | |
| | ||||||
* | Issue #4129: field changed from int to Py_ssize_t. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+4 | |
| | ||||||
* | Issue #4129: more int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+12 | |
| | ||||||
* | Issue #4129: more int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+16 | |
| | ||||||
* | Issue #4129: int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+8 | |
| | ||||||
* | Issue #4129: int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+12 | |
| | ||||||
* | Reformat prior to editing. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -12/+13 | |
| |