Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #4524: distutils build_script command failed with --with-suffix=3 | Tarek Ziadé | 2009-02-13 | 3 | -2/+33 |
| | |||||
* | Issue #2461: added tests for distutils.util | Tarek Ziadé | 2009-02-13 | 2 | -0/+215 |
| | |||||
* | Add optional code signing after merging. | Martin v. Löwis | 2009-02-13 | 1 | -0/+6 |
| | |||||
* | Update Tix build procedure. | Martin v. Löwis | 2009-02-13 | 1 | -6/+6 |
| | |||||
* | Move amd64 properties further to the top, so that they override | Martin v. Löwis | 2009-02-13 | 1 | -4/+4 |
| | | | | the linker options correctly. | ||||
* | reverted leak fix, to use the one done in py3k branch (r67382) | Tarek Ziadé | 2009-02-13 | 1 | -2/+12 |
| | |||||
* | Fix compiler warning (gcc) | Antoine Pitrou | 2009-02-13 | 1 | -1/+1 |
| | |||||
* | Issue #5186: Reduce hash collisions for objects with no __hash__ method by | Antoine Pitrou | 2009-02-13 | 2 | -15/+10 |
| | | | | rotating the object pointer by 4 bits to the right. | ||||
* | Fix warnings GCC emits where the argument of PyErr_Format is a single variable. | Georg Brandl | 2009-02-13 | 1 | -6/+8 |
| | |||||
* | Fix warnings GCC emits where the argument of PyErr_Format is a single variable. | Georg Brandl | 2009-02-13 | 1 | -3/+3 |
| | |||||
* | #3694: add test for fix committed in r66693. | Georg Brandl | 2009-02-13 | 1 | -0/+4 |
| | |||||
* | #1661108: note that urlsafe encoded string can contain "=". | Georg Brandl | 2009-02-13 | 1 | -1/+2 |
| | |||||
* | #3734: document complex coercing behavior better. | Georg Brandl | 2009-02-13 | 1 | -1/+2 |
| | |||||
* | #4894: document "newurl" parameter to redirect_request(). | Georg Brandl | 2009-02-13 | 1 | -5/+6 |
| | |||||
* | #5158: added documentation on the depends option in distutils extensions | Tarek Ziadé | 2009-02-13 | 2 | -0/+5 |
| | |||||
* | Add links to the other versions we have in stock. | Georg Brandl | 2009-02-13 | 1 | -3/+8 |
| | |||||
* | - Issue #3745: Fix hashlib to always reject unicode and non buffer-api | Gregory P. Smith | 2009-02-13 | 10 | -101/+240 |
| | | | | | | supporting objects as input no matter how it was compiled (built in implementations or external openssl library). (backported from a py3k branch) | ||||
* | fixing the leak introduced in r69304 | Tarek Ziadé | 2009-02-12 | 1 | -2/+2 |
| | |||||
* | Typo fix. | Mark Dickinson | 2009-02-12 | 1 | -1/+1 |
| | |||||
* | One more test. | Raymond Hettinger | 2009-02-12 | 1 | -0/+3 |
| | |||||
* | Add an extra testcase. | Raymond Hettinger | 2009-02-12 | 1 | -0/+3 |
| | |||||
* | Fix spaces/tabs in example. | Raymond Hettinger | 2009-02-12 | 1 | -4/+3 |
| | |||||
* | Issue 5032: added a step argument to itertools.count() and allowed ↵ | Raymond Hettinger | 2009-02-12 | 4 | -41/+135 |
| | | | | non-integer arguments. | ||||
* | no need for this __bases__ trick anymore | Benjamin Peterson | 2009-02-12 | 1 | -1/+1 |
| | |||||
* | os.fsync() should be used to ensure that data is written to disk | Benjamin Peterson | 2009-02-12 | 1 | -0/+5 |
| | |||||
* | Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even | Gregory P. Smith | 2009-02-11 | 3 | -2/+19 |
| | | | | on LP64 platforms (most 64-bit Linux, bsd, unix systems). | ||||
* | Issue #5204: Define _PyVerify_fd on VC6 to make | Hirokazu Yamamoto | 2009-02-11 | 1 | -0/+3 |
| | | | | test_fdopen (test_os.py) pass. | ||||
* | Clean-up named tuple docs. | Raymond Hettinger | 2009-02-11 | 1 | -4/+5 |
| | |||||
* | Issue#5203: ctypes segfaults when passing a unicode string to a | Thomas Heller | 2009-02-10 | 2 | -0/+4 |
| | | | | function without argtypes, if HAVE_USABLE_WCHAR_T is false. | ||||
* | _testcapi depends on testcapi_long.h | Mark Dickinson | 2009-02-10 | 1 | -1/+2 |
| | | | | Thanks Lisandro Dalcin. | ||||
* | 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. |