Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #5039: make it clear that the impl. note refers to CPython. | Georg Brandl | 2009-03-30 | 1 | -2/+3 |
| | |||||
* | A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht), | Barry Warsaw | 2009-03-30 | 4 | -62/+83 |
| | | | | | | though with some changes by me. This patch should not be back ported or forward ported. It's a bit too risky for 2.6 and 3.x does things fairly differently. | ||||
* | Many edits | Andrew M. Kuchling | 2009-03-30 | 1 | -75/+74 |
| | |||||
* | Add several items and placeholders | Andrew M. Kuchling | 2009-03-30 | 1 | -42/+90 |
| | |||||
* | Remove comment | Andrew M. Kuchling | 2009-03-30 | 1 | -2/+0 |
| | |||||
* | Typo fixes | Andrew M. Kuchling | 2009-03-30 | 1 | -2/+2 |
| | |||||
* | #5199: make warning about vars() assignment more visible. | Georg Brandl | 2009-03-30 | 1 | -2/+6 |
| | |||||
* | Add several VM developers. | Martin v. Löwis | 2009-03-30 | 1 | -0/+5 |
| | |||||
* | finalize the queue prior to shutdown | Jesse Noller | 2009-03-30 | 1 | -0/+2 |
| | |||||
* | Fix for bugs: Issue4675 and Issue4962. | Senthil Kumaran | 2009-03-30 | 4 | -2/+22 |
| | |||||
* | Remove references to test_socket_ssl which was deleted in trunk | R. David Murray | 2009-03-30 | 1 | -12/+0 |
| | | | | in r64392 and py3k in r59038. | ||||
* | Fix for issue 13095 | Ronald Oussoren | 2009-03-30 | 2 | -1/+7 |
| | |||||
* | Fixes issue 5270 | Ronald Oussoren | 2009-03-30 | 2 | -5/+12 |
| | |||||
* | * Set a custom icon on the Python installer DMG | Ronald Oussoren | 2009-03-30 | 2 | -127/+189 |
| | | | | | | | * Remove last traces of "MacPython" * Add options to build different flavors of the installer (still defaulting to a 2-way universal build that runs on OSX 10.3) | ||||
* | Remove usage of the deprecated '-cString' and '+stringWithCString:' API's | Ronald Oussoren | 2009-03-30 | 1 | -2/+2 |
| | | | | in PythonLauncher, replacing them with the correct counterparts. | ||||
* | Add import_function method to test.test_support, and modify a number of | R. David Murray | 2009-03-30 | 20 | -41/+78 |
| | | | | | | | | tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on. | ||||
* | Fix issue where 'make altinstall' or 'make install' would install everything | Ronald Oussoren | 2009-03-30 | 2 | -1/+5 |
| | | | | that needs to be installed on OSX (depending on the configure flags) | ||||
* | * Updates installed dependencies to latest releaases (bzip, zlib, ...) | Ronald Oussoren | 2009-03-30 | 2 | -111/+65 |
| | | | | | | * Changes code for updating folder icons from Python code that uses the deprecated Carbon module to a much simpler Cocoa program in Objective-C | ||||
* | Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle mixed ↵ | Kurt B. Kaiser | 2009-03-30 | 2 | -4/+15 |
| | | | | space/tab properly. Issue 5120, patch by Guilherme Polo. | ||||
* | Fix for issue 896199 (some Carbon modules aren't present in the documentation) | Ronald Oussoren | 2009-03-30 | 1 | -0/+262 |
| | |||||
* | Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager sockets | Jesse Noller | 2009-03-30 | 3 | -0/+29 |
| | |||||
* | Revert incorrect change. | R. David Murray | 2009-03-30 | 1 | -3/+6 |
| | |||||
* | Add an entry to developers.txt. | Brett Cannon | 2009-03-30 | 1 | -0/+3 |
| | |||||
* | This patch fixes issue 1254695 (wrong argument type conversion in Carbon.Qt) | Ronald Oussoren | 2009-03-30 | 2 | -365/+368 |
| | |||||
* | don't rely on the order dict repr #5605 | Benjamin Peterson | 2009-03-30 | 1 | -2/+2 |
| | |||||
* | Convert import try/except to use test_support.import_module(). | R. David Murray | 2009-03-30 | 1 | -6/+3 |
| | |||||
* | add missing import | Benjamin Peterson | 2009-03-30 | 1 | -0/+1 |
| | |||||
* | there's actually three methods here #5600 | Benjamin Peterson | 2009-03-30 | 1 | -2/+2 |
| | |||||
* | fix import | Benjamin Peterson | 2009-03-30 | 1 | -2/+2 |
| | |||||
* | Issue 5381: fix regression in pure python code path, Issue 5584: fix a ↵ | Bob Ippolito | 2009-03-29 | 5 | -8/+17 |
| | | | | decoder bug for unicode float literals outside of a container | ||||
* | add missing import | Benjamin Peterson | 2009-03-29 | 1 | -0/+1 |
| | |||||
* | use the awesome new status iterator | Benjamin Peterson | 2009-03-29 | 1 | -1/+3 |
| | |||||
* | thanks to guido's bytecode verifier, this is fixed | Benjamin Peterson | 2009-03-29 | 1 | -47/+0 |
| | |||||
* | this has been fixed since 2.6 (I love removing these) | Benjamin Peterson | 2009-03-29 | 1 | -14/+0 |
| | |||||
* | Make life easier for non-CPython implementations. | Raymond Hettinger | 2009-03-29 | 1 | -1/+1 |
| | |||||
* | Issue #532631: Apply floatformat changes to unicodeobject.c | Mark Dickinson | 2009-03-29 | 1 | -0/+9 |
| | | | | as well as stringobject.c. | ||||
* | Issue #532631: Add paranoid check to avoid potential buffer overflow | Mark Dickinson | 2009-03-29 | 1 | -1/+10 |
| | | | | on systems with sizeof(int) > 4. | ||||
* | Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test | Mark Dickinson | 2009-03-29 | 4 | -4/+4 |
| | | | | with fabs(x) >= 1e50, and fix documentation. | ||||
* | Typo fix. | Guilherme Polo | 2009-03-29 | 1 | -1/+1 |
| | |||||
* | Add the ability to control the random seed used by regrtest.py -r. | Collin Winter | 2009-03-29 | 1 | -3/+15 |
| | | | | This adds a --randseed option, and makes regrtest.py -r indicate what random seed it's using so that that value can later be fed back to --randseed. This option is useful for tracking down test order-related issues found by make buildbottest, for example. | ||||
* | fix consistency | Benjamin Peterson | 2009-03-29 | 1 | -2/+2 |
| | |||||
* | stop the versionchanged directive from hiding the docs | Benjamin Peterson | 2009-03-29 | 1 | -5/+7 |
| | |||||
* | a more realistic example | Benjamin Peterson | 2009-03-29 | 1 | -1/+15 |
| | |||||
* | Add section numbering to some of the larger subdocuments. | Georg Brandl | 2009-03-28 | 7 | -0/+7 |
| | |||||
* | Switch to fixed Sphinx version. | Georg Brandl | 2009-03-28 | 1 | -1/+1 |
| | |||||
* | Add a script to fixup rst files if the pre-commit hook rejects them. | Georg Brandl | 2009-03-28 | 1 | -0/+29 |
| | |||||
* | Fix a typo and be more specific | Antoine Pitrou | 2009-03-28 | 1 | -3/+7 |
| | |||||
* | Typo fix | Guilherme Polo | 2009-03-28 | 1 | -1/+1 |
| | |||||
* | give os.symlink and os.link() better parameter names #5564 | Benjamin Peterson | 2009-03-28 | 2 | -4/+7 |
| | |||||
* | #5324: document __subclasses__(). | Georg Brandl | 2009-03-28 | 1 | -0/+11 |
| |