Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix typos/rephrase | Benjamin Peterson | 2009-09-22 | 1 | -5/+5 |
| | |||||
* | Fix a minor doc syntax typo. | Brett Cannon | 2009-09-22 | 1 | -1/+1 |
| | |||||
* | Half of the fix for issue 6957: ensure that distutils | Ronald Oussoren | 2009-09-22 | 1 | -0/+23 |
| | | | | | | | | | ignores the '-isysroot' option on OSX when the corresponding SDK is not installed. This ensures that the user can compile extensions on OSX 10.6 using the Python.org installer and a default installation of Xcode. | ||||
* | Fix whitespace. | Brett Cannon | 2009-09-22 | 1 | -42/+43 |
| | |||||
* | Fixed a typo, and added sections on optimization and using arbitrary objects ↵ | Vinay Sajip | 2009-09-22 | 1 | -1/+48 |
| | | | | as messages. | ||||
* | The 'Navigation Toolbox' is not available at all for 64-bit | Ronald Oussoren | 2009-09-22 | 1 | -22/+13 |
| | | | | | code, make this explicit in the C code to avoid confusing error messages during the build. | ||||
* | Fix encoding name. | Georg Brandl | 2009-09-22 | 1 | -1/+1 |
| | |||||
* | When range checking was added to time.strftime() a check was placed on tm_isdst | Brett Cannon | 2009-09-22 | 4 | -10/+12 |
| | | | | | | | | | | | to make sure it fell within [-1, 1] just in case someone implementing strftime() in libc was stupid enough to assume this. Turns out, though, some OSs (e.g. zOS) are stupid enough to use values outside of this range for time structs created by the system itself. So instead of throwing a ValueError, tm_isdst is now normalized before being passed to strftime(). Fixes issue #6823. Thanks Robert Shapiro for diagnosing the problem and contributing an initial patch. | ||||
* | Issue #6236, #6348: Fix various failures in the io module under AIX | Antoine Pitrou | 2009-09-21 | 3 | -7/+10 |
| | | | | | | | and other platforms, when using a non-gcc compiler. Patch by egreen. In addition, I made explicit the signedness of all bitfields in the IO library. | ||||
* | Silence MSVC compiler warnings. | Mark Dickinson | 2009-09-21 | 1 | -2/+3 |
| | |||||
* | forgot to commit a file in previous commit (r74994, issue #6954) | Tarek Ziadé | 2009-09-21 | 1 | -0/+3 |
| | |||||
* | #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils. | Tarek Ziadé | 2009-09-21 | 4 | -1/+13 |
| | |||||
* | improving distutils coverage | Tarek Ziadé | 2009-09-21 | 1 | -0/+22 |
| | |||||
* | improved distutils test coverage: now the DEBUG mode is covered too (will ↵ | Tarek Ziadé | 2009-09-21 | 5 | -2/+93 |
| | | | | help fix the issue #6954 in py3k branch) | ||||
* | Fix markup for external links. | Doug Hellmann | 2009-09-20 | 2 | -2/+2 |
| | |||||
* | * Make it easier to build custom installers (such as a 3-way universal build) | Ronald Oussoren | 2009-09-20 | 2 | -182/+200 |
| | | | | * Upgrade bzip dependency to 1.0.5 | ||||
* | Fix typo in error message | Ronald Oussoren | 2009-09-20 | 2 | -4/+4 |
| | |||||
* | Merge a newer version of libffi_osx, based on the | Ronald Oussoren | 2009-09-20 | 8 | -716/+713 |
| | | | | | | version of libffi in OSX 10.6.1. This fixes issue6918 | ||||
* | Issue 6877: this patch makes it possible to link the readline extension | Ronald Oussoren | 2009-09-20 | 5 | -10/+135 |
| | | | | | | | | to the libedit emulation of the readline API on OSX 10.5 or later. This also adds a minimal testsuite for readline to check that the history manipuation functions have the same interface with both C libraries. | ||||
* | For for issue 6934: failures in postflight script in OSX installer | Ronald Oussoren | 2009-09-20 | 1 | -6/+5 |
| | |||||
* | Followup for r74962 | Ronald Oussoren | 2009-09-20 | 1 | -2/+1 |
| | |||||
* | Fix for issue 6851: urllib.urlopen crashes in a thread on OSX 10.6 | Ronald Oussoren | 2009-09-20 | 4 | -183/+262 |
| | |||||
* | #6881 - fixed wrong return type; improved the formatting | Ezio Melotti | 2009-09-20 | 1 | -10/+19 |
| | |||||
* | Add Mark Summerfield. | Georg Brandl | 2009-09-19 | 1 | -0/+3 |
| | |||||
* | Add Doug. | Georg Brandl | 2009-09-19 | 1 | -0/+3 |
| | |||||
* | Fix references to threading.enumerate(). | Georg Brandl | 2009-09-19 | 1 | -2/+2 |
| | |||||
* | #6946: fix duplicate index entries for datetime classes. | Georg Brandl | 2009-09-19 | 1 | -0/+4 |
| | |||||
* | Remove unused variable and static function to fix compiler warnings. | Thomas Heller | 2009-09-19 | 1 | -11/+0 |
| | |||||
* | Update bug tracker reference. | Georg Brandl | 2009-09-19 | 1 | -1/+1 |
| | |||||
* | #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a ↵ | Georg Brandl | 2009-09-19 | 3 | -6/+12 |
| | | | | SystemError is set. Also clean up another usage of PyArg_ParseTuple. | ||||
* | typo | Benjamin Peterson | 2009-09-18 | 1 | -1/+1 |
| | |||||
* | backport keyword argument support for bytearray.decode | Benjamin Peterson | 2009-09-18 | 2 | -3/+6 |
| | |||||
* | #6930: clarify description about byteorder handling in UTF decoder routines. | Georg Brandl | 2009-09-18 | 1 | -12/+17 |
| | |||||
* | #6925: rewrite docs for locals() and vars() a bit. | Georg Brandl | 2009-09-18 | 1 | -10/+8 |
| | |||||
* | add keyword arguments support to str/unicode encode and decode #6300 | Benjamin Peterson | 2009-09-18 | 7 | -14/+49 |
| | |||||
* | Use skipUnless to skip math module tests on non-IEEE 754 platforms. | Mark Dickinson | 2009-09-18 | 1 | -31/+34 |
| | |||||
* | Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) | Thomas Heller | 2009-09-18 | 4 | -5/+12 |
| | | | | does now always result in NULL. | ||||
* | Issue #5042: Structure sub-subclass does now initialize correctly with | Thomas Heller | 2009-09-18 | 3 | -58/+95 |
| | | | | base class positional arguments. | ||||
* | Add Gawain Bolton to Misc/ACKS for his work on base 10 integer -> string ↵ | Mark Dickinson | 2009-09-18 | 1 | -0/+1 |
| | | | | optimizations. | ||||
* | Optimize optimization and fix method name in docstring. | Georg Brandl | 2009-09-18 | 1 | -3/+3 |
| | |||||
* | Use str.format() to fix beginner's mistake with %-style string formatting. | Georg Brandl | 2009-09-18 | 1 | -7/+7 |
| | |||||
* | #6938: "ident" is always a string, so use a format code which works. | Georg Brandl | 2009-09-18 | 2 | -1/+4 |
| | |||||
* | #6905: use better exception messages in inspect when the argument is of the ↵ | Georg Brandl | 2009-09-18 | 1 | -7/+7 |
| | | | | wrong type. | ||||
* | #6936: for interactive use, quit() is just fine. | Georg Brandl | 2009-09-18 | 1 | -1/+1 |
| | |||||
* | use macros | Benjamin Peterson | 2009-09-17 | 1 | -1/+1 |
| | |||||
* | Make the optparse doc style a bit more standard: use standard description ↵ | Georg Brandl | 2009-09-17 | 1 | -454/+510 |
| | | | | units for attrs/methods/etc., and use the correct referencing roles. | ||||
* | Remove duplicate doc of enable/disable_interspersed_args. | Georg Brandl | 2009-09-17 | 1 | -27/+19 |
| | |||||
* | #6932: remove paragraph that advises relying on __del__ being called. | Georg Brandl | 2009-09-17 | 1 | -19/+26 |
| | |||||
* | #6844 followup: the warning when setting Exception.message was removed, do ↵ | Georg Brandl | 2009-09-17 | 1 | -7/+0 |
| | | | | not test for it. | ||||
* | Issue #6922: Fix an infinite loop when trying to decode an invalid | Georg Brandl | 2009-09-17 | 3 | -1/+16 |
| | | | | UTF-32 stream with a non-raising error handler like "replace" or "ignore". |