Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for | Mark Dickinson | 2009-02-10 | 6 | -10/+41 |
| | | | | | | negative arguments. Previously, it raised TypeError. Thanks Lisandro Dalcin. | ||||
* | Issue 4804. Add a function to test the validity of file descriptors on ↵ | Kristján Valur Jónsson | 2009-02-10 | 4 | -36/+137 |
| | | | | Windows, and stop using global runtime settings to silence the warnings / assertions. | ||||
* | Fixed svn:eol-style. | Hirokazu Yamamoto | 2009-02-10 | 3 | -218/+218 |
| | |||||
* | Set eol-style to native | Martin v. Löwis | 2009-02-10 | 1 | -14/+14 |
| | |||||
* | Issue #5134: Silence compiler warnings when compiling sqlite with VC++. | Martin v. Löwis | 2009-02-10 | 3 | -24/+32 |
| | |||||
* | Fixed #3386: the optional prefix argument was ignored under OS2 and NT in ↵ | Tarek Ziadé | 2009-02-10 | 3 | -3/+8 |
| | | | | distutils.sysconfig.get_python_lib | ||||
* | compileall used the ctime of bytecode and source to determine if the bytecode | Brett Cannon | 2009-02-10 | 4 | -8/+84 |
| | | | | | should be recreated. This created a timing hole. Fixed by just doing what import does; check the mtime and magic number. | ||||
* | Issue 1818: collections.namedtuple() to support automatic renaming of ↵ | Raymond Hettinger | 2009-02-10 | 4 | -3/+36 |
| | | | | invalid fieldnames. | ||||
* | Enforcing Tk 8.3.1 requirement. | Guilherme Polo | 2009-02-09 | 1 | -2/+2 |
| | |||||
* | Fixed issue #5122: Synchronize tk load failure check to prevent a | Guilherme Polo | 2009-02-09 | 4 | -30/+125 |
| | | | | potential deadlock. | ||||
* | Checking for tk availability before continuing (basically the same that is ↵ | Guilherme Polo | 2009-02-09 | 1 | -1/+7 |
| | | | | done in test_ttk_guionly) | ||||
* | Some tests for Tkinter.Text.search | Guilherme Polo | 2009-02-09 | 4 | -0/+68 |
| | |||||
* | Issue 5171: itertools.product docstring missing 'repeat' argument | Raymond Hettinger | 2009-02-09 | 1 | -0/+3 |
| | |||||
* | Fixed issue #4890: Handle empty text search pattern in | Guilherme Polo | 2009-02-09 | 2 | -2/+5 |
| | | | | Tkinter.Text.search | ||||
* | Turned setup_master public | Guilherme Polo | 2009-02-09 | 1 | -22/+19 |
| | |||||
* | Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. | Mark Dickinson | 2009-02-09 | 3 | -5/+40 |
| | | | | It now forces its argument to double before testing for infinity. | ||||
* | Issue #5170: Fixed Unicode output bug in logging and added test case. This ↵ | Vinay Sajip | 2009-02-08 | 3 | -10/+38 |
| | | | | is a regression which did not occur in 2.5. | ||||
* | Silence 'arg may be used uninitialized in this function' warning from gcc. | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
| | |||||
* | a few edits and typos | Benjamin Peterson | 2009-02-08 | 1 | -10/+11 |
| | |||||
* | Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
| | | | | | | | | | | | platforms. The previous code was fragile, depending on the twin accidents that: (1) in C, casting the double value 2.**63 to long returns the integer value -2**63, and (2) in Python, hash(-2**63) == hash(2**63). There's already a test for this in test_hash. | ||||
* | document numliterals fixer | Benjamin Peterson | 2009-02-08 | 1 | -0/+4 |
| | |||||
* | Remove redundant assignment in _PyObject_LengthHint | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
| | |||||
* | Issue #4512 closeout: Make ZipImport.get_filename() a public method | Nick Coghlan | 2009-02-08 | 4 | -9/+21 |
| | |||||
* | Mention patch submitter in NEWS entry for r69419 | Nick Coghlan | 2009-02-08 | 1 | -1/+2 |
| | |||||
* | Issue 4195: Restore the ability to execute packages with the -m switch (but ↵ | Nick Coghlan | 2009-02-08 | 6 | -12/+110 |
| | | | | this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda) | ||||
* | document individual 2to3 fixers | Benjamin Peterson | 2009-02-07 | 2 | -10/+259 |
| | |||||
* | make destinsrc private | Benjamin Peterson | 2009-02-07 | 2 | -6/+6 |
| | |||||
* | make "super only for new-style classes" a note. | Georg Brandl | 2009-02-07 | 1 | -2/+4 |
| | |||||
* | Add test for issue #999042, explict global statement works. | Neil Schemenauer | 2009-02-07 | 1 | -0/+7 |
| | |||||
* | Fix broken test in test_hotshot. Treating the current directory as an | Neil Schemenauer | 2009-02-07 | 1 | -1/+7 |
| | | | | | empty file is sloppy and non-portable. Use NamedTemporaryFile to make an empty file. | ||||
* | #5174: fix wrong file closing in example. | Georg Brandl | 2009-02-07 | 1 | -6/+4 |
| | |||||
* | Eliminated the need to use ttk.__loadtk__ and the problems related it. | Guilherme Polo | 2009-02-07 | 2 | -36/+42 |
| | |||||
* | Issue #999042: The Python compiler now handles explict global statements | Neil Schemenauer | 2009-02-07 | 4 | -10/+18 |
| | | | | | correctly (should be assigned using STORE_GLOBAL opcode). This was done by having the system table differentiate between explict and implicit globals. | ||||
* | Make names generated for 'with' variables match the built-in compiler. | Neil Schemenauer | 2009-02-07 | 1 | -1/+1 |
| | |||||
* | #3986 replacing string and types call (like in the Py3k branch), and put ↵ | Tarek Ziadé | 2009-02-07 | 2 | -24/+55 |
| | | | | exec_msg call at the right place | ||||
* | Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will | Guilherme Polo | 2009-02-06 | 2 | -20/+29 |
| | | | | | | not be used again (this requires Tcl/Tk 8.3.1), also fix a memory leak in Tkapp_Call when calling from a thread different than the one that created the Tcl interpreter. | ||||
* | Partial fix to issue #1731706: memory leak in Tkapp_Call when calling | Guilherme Polo | 2009-02-06 | 2 | -1/+7 |
| | | | | from a thread different than the one that created the Tcl interpreter. | ||||
* | Convert "srcdir" into an absolute path if that seems prudent. Currrently | Neil Schemenauer | 2009-02-06 | 1 | -0/+14 |
| | | | | | | | the only user of this is Lib/distutils/tests/test_build_ext.py (in order to find the source for xxmodule.c). I'm not sure if other platforms need similar tweaks, I'm not brave enough to attempt it without being able to test. | ||||
* | Overhaul Lib/compiler block ordering. The previous code was filled with | Neil Schemenauer | 2009-02-06 | 2 | -159/+97 |
| | | | | | | hacks. The new code is based on issue #2472 posted by Antoine Pitrou. I did some further cleanups of the pyassem code and optimized the block ordering pass. | ||||
* | Fixed #5167: test_customize_compiler does not apply under non unix compilers | Tarek Ziadé | 2009-02-06 | 1 | -0/+6 |
| | |||||
* | Ivan on IRC in #twisted reported this crasher. | Armin Rigo | 2009-02-06 | 1 | -0/+5 |
| | |||||
* | Fix a number of Win32ErrorTests error cases. chmod wasn't being tested. ↵ | Kristján Valur Jónsson | 2009-02-06 | 1 | -5/+7 |
| | | | | 'access' never raises an error. | ||||
* | removed types usage and added test coverage (work for #3986) | Tarek Ziadé | 2009-02-06 | 2 | -9/+51 |
| | |||||
* | Fixed #3987 : removed unused import | Tarek Ziadé | 2009-02-06 | 1 | -1/+0 |
| | |||||
* | fix download link | Benjamin Peterson | 2009-02-06 | 1 | -1/+1 |
| | |||||
* | fixed #1520877: now distutils reads Read from the environment/Makefile | Tarek Ziadé | 2009-02-06 | 3 | -3/+31 |
| | |||||
* | using >= so setting verbose to 2 will work as well | Tarek Ziadé | 2009-02-06 | 2 | -6/+6 |
| | |||||
* | Implement issue #4285, convert sys.version_info to a named | Eric Smith | 2009-02-06 | 4 | -22/+100 |
| | | | | tuple. Patch by Ross Light. | ||||
* | README now reflects the current state | Tarek Ziadé | 2009-02-06 | 1 | -16/+5 |
| | |||||
* | Fixed #1276768: verbose option was not used in the code. | Tarek Ziadé | 2009-02-06 | 5 | -24/+188 |
| |