Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #5316 : test failure in test_site | Tarek Ziadé | 2009-02-25 | 1 | -0/+3 |
| | |||||
* | - Link the shared python library with $(MODLIBS). | Matthias Klose | 2009-02-22 | 1 | -0/+2 |
| | |||||
* | Issue #5341: Fix a variety of spelling errors. | Mark Dickinson | 2009-02-21 | 4 | -6/+6 |
| | |||||
* | Issue #5247: Improve error message when unknown format codes are used when ↵ | Eric Smith | 2009-02-20 | 1 | -0/+4 |
| | | | | using str.format() with str, unicode, long, int, and float arguments. | ||||
* | #5287: Add exception handling around findCaller() call to help out IronPython. | Vinay Sajip | 2009-02-19 | 1 | -2/+4 |
| | |||||
* | Py3k warnings now automatically include -Qwarn for division. | Raymond Hettinger | 2009-02-18 | 1 | -0/+3 |
| | |||||
* | fixed the data_files inclusion behavior | Tarek Ziadé | 2009-02-17 | 1 | -0/+1 |
| | |||||
* | Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, | Hirokazu Yamamoto | 2009-02-17 | 1 | -0/+3 |
| | | | | The file was resized to wrong size. | ||||
* | Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. | Hirokazu Yamamoto | 2009-02-17 | 1 | -0/+2 |
| | |||||
* | Fixed #2279: distutils.sdist.add_defaults now add files listed in ↵ | Tarek Ziadé | 2009-02-16 | 1 | -0/+3 |
| | | | | package_data and data_files | ||||
* | remove some PyBytes_* aliases that are not in 3.x | Benjamin Peterson | 2009-02-16 | 1 | -0/+2 |
| | |||||
* | Added Ross Light to ACKS, for bug 4285 (r69331). | Eric Smith | 2009-02-16 | 1 | -0/+1 |
| | |||||
* | Issue #5260: Various portability and standards compliance fixes, optimizations | Mark Dickinson | 2009-02-15 | 1 | -0/+4 |
| | | | | | | | and cleanups in Objects/longobject.c. The most significant change is that longs now use less memory: average savings are 2 bytes per long on 32-bit systems and 6 bytes per long on 64-bit systems. (This memory saving already exists in py3k.) | ||||
* | Fix for #5257: refactored all tests in distutils, so they use a temporary ↵ | Tarek Ziadé | 2009-02-14 | 1 | -0/+3 |
| | | | | directory. | ||||
* | Fixed #4524: distutils build_script command failed with --with-suffix=3 | Tarek Ziadé | 2009-02-13 | 1 | -0/+3 |
| | |||||
* | Issue #2461: added tests for distutils.util | Tarek Ziadé | 2009-02-13 | 1 | -0/+2 |
| | |||||
* | Issue #5186: Reduce hash collisions for objects with no __hash__ method by | Antoine Pitrou | 2009-02-13 | 1 | -0/+3 |
| | | | | rotating the object pointer by 4 bits to the right. | ||||
* | - Issue #3745: Fix hashlib to always reject unicode and non buffer-api | Gregory P. Smith | 2009-02-13 | 1 | -0/+4 |
| | | | | | | supporting objects as input no matter how it was compiled (built in implementations or external openssl library). (backported from a py3k branch) | ||||
* | Typo fix. | Mark Dickinson | 2009-02-12 | 1 | -1/+1 |
| | |||||
* | Issue 5032: added a step argument to itertools.count() and allowed ↵ | Raymond Hettinger | 2009-02-12 | 1 | -0/+3 |
| | | | | non-integer arguments. | ||||
* | Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even | Gregory P. Smith | 2009-02-11 | 1 | -0/+3 |
| | | | | on LP64 platforms (most 64-bit Linux, bsd, unix systems). | ||||
* | Issue#5203: ctypes segfaults when passing a unicode string to a | Thomas Heller | 2009-02-10 | 1 | -0/+3 |
| | | | | function without argtypes, if HAVE_USABLE_WCHAR_T is false. | ||||
* | Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for | Mark Dickinson | 2009-02-10 | 2 | -0/+4 |
| | | | | | | negative arguments. Previously, it raised TypeError. Thanks Lisandro Dalcin. | ||||
* | Issue #5134: Silence compiler warnings when compiling sqlite with VC++. | Martin v. Löwis | 2009-02-10 | 1 | -0/+2 |
| | |||||
* | Fixed #3386: the optional prefix argument was ignored under OS2 and NT in ↵ | Tarek Ziadé | 2009-02-10 | 1 | -0/+3 |
| | | | | distutils.sysconfig.get_python_lib | ||||
* | compileall used the ctime of bytecode and source to determine if the bytecode | Brett Cannon | 2009-02-10 | 2 | -1/+6 |
| | | | | | 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 | 1 | -0/+4 |
| | | | | invalid fieldnames. | ||||
* | Fixed issue #5122: Synchronize tk load failure check to prevent a | Guilherme Polo | 2009-02-09 | 1 | -0/+3 |
| | | | | potential deadlock. | ||||
* | Fixed issue #4890: Handle empty text search pattern in | Guilherme Polo | 2009-02-09 | 1 | -0/+2 |
| | | | | Tkinter.Text.search | ||||
* | Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. | Mark Dickinson | 2009-02-09 | 1 | -0/+3 |
| | | | | 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 | 1 | -3/+6 |
| | | | | is a regression which did not occur in 2.5. | ||||
* | Issue #4512 closeout: Make ZipImport.get_filename() a public method | Nick Coghlan | 2009-02-08 | 1 | -0/+3 |
| | |||||
* | 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 | 2 | -0/+5 |
| | | | | this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda) | ||||
* | Issue #999042: The Python compiler now handles explict global statements | Neil Schemenauer | 2009-02-07 | 1 | -0/+3 |
| | | | | | correctly (should be assigned using STORE_GLOBAL opcode). This was done by having the system table differentiate between explict and implicit globals. | ||||
* | Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will | Guilherme Polo | 2009-02-06 | 1 | -3/+4 |
| | | | | | | 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 | 1 | -0/+4 |
| | | | | from a thread different than the one that created the Tcl interpreter. | ||||
* | fixed #1520877: now distutils reads Read from the environment/Makefile | Tarek Ziadé | 2009-02-06 | 1 | -0/+3 |
| | |||||
* | Implement issue #4285, convert sys.version_info to a named | Eric Smith | 2009-02-06 | 1 | -0/+3 |
| | | | | tuple. Patch by Ross Light. | ||||
* | Fixed #1276768: verbose option was not used in the code. | Tarek Ziadé | 2009-02-06 | 1 | -0/+3 |
| | |||||
* | Fixed #5132: enable extensions to link on Solaris | Tarek Ziadé | 2009-02-05 | 1 | -0/+3 |
| | |||||
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt. | Raymond Hettinger | 2009-02-02 | 1 | -0/+4 |
| | |||||
* | NEWS entry for issue #1581476 | Guilherme Polo | 2009-02-02 | 1 | -0/+2 |
| | |||||
* | Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows. | Martin v. Löwis | 2009-02-02 | 1 | -0/+2 |
| | |||||
* | - Issue #5104: The socket module now raises OverflowError when 16-bit port and | Gregory P. Smith | 2009-01-31 | 1 | -0/+4 |
| | | | | | protocol numbers are supplied outside the allowed 0-65536 range on bind() and getservbyport(). | ||||
* | Issue #2047: shutil.move() could believe that its destination path was | Antoine Pitrou | 2009-01-29 | 1 | -0/+4 |
| | | | | | inside its source path if it began with the same letters (e.g. "src" vs. "src.new"). | ||||
* | Issue 4920: Fixed next() vs __next__() issues in the ABCs | Raymond Hettinger | 2009-01-28 | 1 | -0/+3 |
| | | | | | for Iterator and MutableSet. Also added thorough test for required abstractmethods. | ||||
* | Issue #5083: New 'gui' resource for regrtest. | Guilherme Polo | 2009-01-28 | 1 | -0/+5 |
| | |||||
* | Demos for ttk added. | Guilherme Polo | 2009-01-28 | 1 | -0/+2 |
| | |||||
* | Added the ttk module. See issue #2983: Ttk support for Tkinter. | Guilherme Polo | 2009-01-28 | 1 | -0/+2 |
| |