summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError forMark Dickinson2009-02-106-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ónsson2009-02-104-36/+137
| | | | Windows, and stop using global runtime settings to silence the warnings / assertions.
* Fixed svn:eol-style.Hirokazu Yamamoto2009-02-103-218/+218
|
* Set eol-style to nativeMartin v. Löwis2009-02-101-14/+14
|
* Issue #5134: Silence compiler warnings when compiling sqlite with VC++.Martin v. Löwis2009-02-103-24/+32
|
* Fixed #3386: the optional prefix argument was ignored under OS2 and NT in ↵Tarek Ziadé2009-02-103-3/+8
| | | | distutils.sysconfig.get_python_lib
* compileall used the ctime of bytecode and source to determine if the bytecodeBrett Cannon2009-02-104-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 Hettinger2009-02-104-3/+36
| | | | invalid fieldnames.
* Enforcing Tk 8.3.1 requirement.Guilherme Polo2009-02-091-2/+2
|
* Fixed issue #5122: Synchronize tk load failure check to prevent aGuilherme Polo2009-02-094-30/+125
| | | | potential deadlock.
* Checking for tk availability before continuing (basically the same that is ↵Guilherme Polo2009-02-091-1/+7
| | | | done in test_ttk_guionly)
* Some tests for Tkinter.Text.searchGuilherme Polo2009-02-094-0/+68
|
* Issue 5171: itertools.product docstring missing 'repeat' argumentRaymond Hettinger2009-02-091-0/+3
|
* Fixed issue #4890: Handle empty text search pattern inGuilherme Polo2009-02-092-2/+5
| | | | Tkinter.Text.search
* Turned setup_master publicGuilherme Polo2009-02-091-22/+19
|
* Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs.Mark Dickinson2009-02-093-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 Sajip2009-02-083-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 Dickinson2009-02-081-1/+1
|
* a few edits and typosBenjamin Peterson2009-02-081-10/+11
|
* Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bitMark Dickinson2009-02-081-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 fixerBenjamin Peterson2009-02-081-0/+4
|
* Remove redundant assignment in _PyObject_LengthHintMark Dickinson2009-02-081-1/+1
|
* Issue #4512 closeout: Make ZipImport.get_filename() a public methodNick Coghlan2009-02-084-9/+21
|
* Mention patch submitter in NEWS entry for r69419Nick Coghlan2009-02-081-1/+2
|
* Issue 4195: Restore the ability to execute packages with the -m switch (but ↵Nick Coghlan2009-02-086-12/+110
| | | | this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda)
* document individual 2to3 fixersBenjamin Peterson2009-02-072-10/+259
|
* make destinsrc privateBenjamin Peterson2009-02-072-6/+6
|
* make "super only for new-style classes" a note.Georg Brandl2009-02-071-2/+4
|
* Add test for issue #999042, explict global statement works.Neil Schemenauer2009-02-071-0/+7
|
* Fix broken test in test_hotshot. Treating the current directory as anNeil Schemenauer2009-02-071-1/+7
| | | | | empty file is sloppy and non-portable. Use NamedTemporaryFile to make an empty file.
* #5174: fix wrong file closing in example.Georg Brandl2009-02-071-6/+4
|
* Eliminated the need to use ttk.__loadtk__ and the problems related it.Guilherme Polo2009-02-072-36/+42
|
* Issue #999042: The Python compiler now handles explict global statementsNeil Schemenauer2009-02-074-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 Schemenauer2009-02-071-1/+1
|
* #3986 replacing string and types call (like in the Py3k branch), and put ↵Tarek Ziadé2009-02-072-24/+55
| | | | exec_msg call at the right place
* Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that willGuilherme Polo2009-02-062-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 callingGuilherme Polo2009-02-062-1/+7
| | | | from a thread different than the one that created the Tcl interpreter.
* Convert "srcdir" into an absolute path if that seems prudent. CurrrentlyNeil Schemenauer2009-02-061-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 withNeil Schemenauer2009-02-062-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 compilersTarek Ziadé2009-02-061-0/+6
|
* Ivan on IRC in #twisted reported this crasher.Armin Rigo2009-02-061-0/+5
|
* Fix a number of Win32ErrorTests error cases. chmod wasn't being tested. ↵Kristján Valur Jónsson2009-02-061-5/+7
| | | | 'access' never raises an error.
* removed types usage and added test coverage (work for #3986)Tarek Ziadé2009-02-062-9/+51
|
* Fixed #3987 : removed unused importTarek Ziadé2009-02-061-1/+0
|
* fix download linkBenjamin Peterson2009-02-061-1/+1
|
* fixed #1520877: now distutils reads Read from the environment/MakefileTarek Ziadé2009-02-063-3/+31
|
* using >= so setting verbose to 2 will work as wellTarek Ziadé2009-02-062-6/+6
|
* Implement issue #4285, convert sys.version_info to a namedEric Smith2009-02-064-22/+100
| | | | tuple. Patch by Ross Light.
* README now reflects the current stateTarek Ziadé2009-02-061-16/+5
|
* Fixed #1276768: verbose option was not used in the code.Tarek Ziadé2009-02-065-24/+188
|