summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #4524: distutils build_script command failed with --with-suffix=3Tarek Ziadé2009-02-133-2/+33
|
* Issue #2461: added tests for distutils.utilTarek Ziadé2009-02-132-0/+215
|
* Add optional code signing after merging.Martin v. Löwis2009-02-131-0/+6
|
* Update Tix build procedure.Martin v. Löwis2009-02-131-6/+6
|
* Move amd64 properties further to the top, so that they overrideMartin v. Löwis2009-02-131-4/+4
| | | | the linker options correctly.
* reverted leak fix, to use the one done in py3k branch (r67382)Tarek Ziadé2009-02-131-2/+12
|
* Fix compiler warning (gcc)Antoine Pitrou2009-02-131-1/+1
|
* Issue #5186: Reduce hash collisions for objects with no __hash__ method byAntoine Pitrou2009-02-132-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 Brandl2009-02-131-6/+8
|
* Fix warnings GCC emits where the argument of PyErr_Format is a single variable.Georg Brandl2009-02-131-3/+3
|
* #3694: add test for fix committed in r66693.Georg Brandl2009-02-131-0/+4
|
* #1661108: note that urlsafe encoded string can contain "=".Georg Brandl2009-02-131-1/+2
|
* #3734: document complex coercing behavior better.Georg Brandl2009-02-131-1/+2
|
* #4894: document "newurl" parameter to redirect_request().Georg Brandl2009-02-131-5/+6
|
* #5158: added documentation on the depends option in distutils extensionsTarek Ziadé2009-02-132-0/+5
|
* Add links to the other versions we have in stock.Georg Brandl2009-02-131-3/+8
|
* - Issue #3745: Fix hashlib to always reject unicode and non buffer-apiGregory P. Smith2009-02-1310-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 r69304Tarek Ziadé2009-02-121-2/+2
|
* Typo fix.Mark Dickinson2009-02-121-1/+1
|
* One more test.Raymond Hettinger2009-02-121-0/+3
|
* Add an extra testcase.Raymond Hettinger2009-02-121-0/+3
|
* Fix spaces/tabs in example.Raymond Hettinger2009-02-121-4/+3
|
* Issue 5032: added a step argument to itertools.count() and allowed ↵Raymond Hettinger2009-02-124-41/+135
| | | | non-integer arguments.
* no need for this __bases__ trick anymoreBenjamin Peterson2009-02-121-1/+1
|
* os.fsync() should be used to ensure that data is written to diskBenjamin Peterson2009-02-121-0/+5
|
* Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes evenGregory P. Smith2009-02-113-2/+19
| | | | on LP64 platforms (most 64-bit Linux, bsd, unix systems).
* Issue #5204: Define _PyVerify_fd on VC6 to makeHirokazu Yamamoto2009-02-111-0/+3
| | | | test_fdopen (test_os.py) pass.
* Clean-up named tuple docs.Raymond Hettinger2009-02-111-4/+5
|
* Issue#5203: ctypes segfaults when passing a unicode string to aThomas Heller2009-02-102-0/+4
| | | | function without argtypes, if HAVE_USABLE_WCHAR_T is false.
* _testcapi depends on testcapi_long.hMark Dickinson2009-02-101-1/+2
| | | | Thanks Lisandro Dalcin.
* 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.