Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns | Christian Heimes | 2013-12-16 | 2 | -2/+7 | |
| | | | | | | | | EWOULDBLOCK on Windows or VMs hosted on Windows. | |||||
* | | Issue #19987: Re-write test_alias_fallback in test_winsound to have two | Zachary Ware | 2013-12-16 | 2 | -8/+9 | |
| | | | | | | | | | | | | acceptable outcomes: success or RuntimeError. Without being able to actually hear whether a sound was played, either one could be right, but any other error would be a failure. | |||||
* | | Merge heads | Serhiy Storchaka | 2013-12-16 | 2 | -1/+3 | |
|\ \ | ||||||
| * \ | Merge. | Charles-François Natali | 2013-12-16 | 1 | -0/+1 | |
| |\ \ | ||||||
| | * | | Issue #17919: add missing import of USHRT_MAX | Christian Heimes | 2013-12-16 | 1 | -0/+1 | |
| | | | | ||||||
| * | | | Merge. | Charles-François Natali | 2013-12-16 | 4 | -4/+32 | |
| |\ \ \ | | |/ / | ||||||
| * | | | Merge. | Charles-François Natali | 2013-12-15 | 116 | -552/+1088 | |
| |\ \ \ | ||||||
| * | | | | Issue #19965: Make sure that Python-ast.h is properly taken into account in the | Charles-François Natali | 2013-12-15 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | makefile. | |||||
* | | | | | Issue #19912: Fixed numerous bugs in ntpath.splitunc(). | Serhiy Storchaka | 2013-12-16 | 3 | -20/+33 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc(). | |||||
* | | | | | Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character | Serhiy Storchaka | 2013-12-16 | 3 | -1/+7 | |
| |_|/ / |/| | | | | | | | | | | | (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). | |||||
* | | | | #19532: make compileall with no file/dir args respect -f and -q. | R David Murray | 2013-12-16 | 3 | -1/+28 | |
| | | | | | | | | | | | | | | | | Patch by Vajrasky Kok. | |||||
* | | | | Issue #19986: Avoid an incorrect warning of older gcc versions. | Stefan Krah | 2013-12-15 | 1 | -3/+4 | |
| |/ / |/| | | ||||||
* | | | Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. | Serhiy Storchaka | 2013-12-14 | 6 | -45/+12 | |
| | | | ||||||
* | | | Issue #19623: Fixed writing to unseekable files in the aifc module. | Serhiy Storchaka | 2013-12-14 | 6 | -62/+103 | |
| | | | ||||||
* | | | Issue #17919: Fixed integer overflow in the eventmask parameter. | Serhiy Storchaka | 2013-12-14 | 4 | -17/+50 | |
| | | | ||||||
* | | | Fix C++ header usage. This __STDC_LIMIT_MACROS scheme can still be subverted | Stefan Krah | 2013-12-14 | 1 | -9/+11 | |
| | | | | | | | | | | | | | | | by including stdint.h before mpdecimal.h. In that case the only option left is to compile with -D_STDC_LIMIT_MACROS. | |||||
* | | | #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa. | Ezio Melotti | 2013-12-14 | 1 | -2/+2 | |
| | | | ||||||
* | | | #19970: Fix some comment typos. | R David Murray | 2013-12-14 | 3 | -4/+4 | |
| | | | | | | | | | | | | Report and patch by Vajrasky Kok. | |||||
* | | | Issue #19963: Document that importlib.import_module() will import | Brett Cannon | 2013-12-13 | 2 | -2/+8 | |
| | | | | | | | | | | | | parent packages automatically. | |||||
* | | | #18036: update .pyc FAQ entry in light of PEP 3147. | R David Murray | 2013-12-13 | 1 | -18/+27 | |
| | | | | | | | | | | | | Initial patch by Phil Connell. | |||||
* | | | Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" | Victor Stinner | 2013-12-13 | 3 | -3/+25 | |
| | | | | | | | | | | | | argument is not in range [0; 255]. | |||||
* | | | Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. | Serhiy Storchaka | 2013-12-13 | 3 | -7/+4 | |
| | | | ||||||
* | | | Issue #14432: Fix compilation when thread support is disabled | Victor Stinner | 2013-12-13 | 1 | -0/+4 | |
| | | | ||||||
* | | | Issue #14432: Generator now clears the borrowed reference to the thread state | Victor Stinner | 2013-12-13 | 4 | -0/+141 | |
| | | | | | | | | | | | | | | | | | | | | | Fix a crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup. | |||||
* | | | Do not discard const qualifier without a reason. | Stefan Krah | 2013-12-12 | 1 | -7/+7 | |
| | | | ||||||
* | | | Avoid UnicodeEncodeError by only printing ASCII. | Zachary Ware | 2013-12-12 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | This fixes running test_decimal in verbose mode on Windows, which I broke in issue #19572. | |||||
* | | | Filter namespaceobject's files properly in the pythoncore VS project. | Zachary Ware | 2013-12-11 | 1 | -2/+6 | |
| | | | ||||||
* | | | Issue #19828: Fixed test_site when the whole suite is run with -S. | Zachary Ware | 2013-12-11 | 2 | -9/+10 | |
| | | | | | | | | | | | | Also, cleaned up an unused import. | |||||
* | | | #19063: partially fix set_payload handling of non-ASCII string input. | R David Murray | 2013-12-11 | 4 | -11/+63 | |
| | | | | | | | | | | | | | | | | | | This is a backward compatible partial fix, the complete fix requires raising an error instead of accepting the invalid input, so the real fix is only suitable for 3.4. | |||||
* | | | Issue #17576: Deprecation warning emitted now when __int__() or __index__() | Serhiy Storchaka | 2013-12-11 | 7 | -186/+312 | |
| | | | | | | | | | | | | | | | return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions. | |||||
* | | | Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the | Gregory P. Smith | 2013-12-11 | 2 | -2/+9 | |
| | | | | | | | | | | | | | | | | | | fix to Issue #14635 in Python 3.3.0 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again. | |||||
* | | | Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial | Ned Deily | 2013-12-11 | 2 | -12/+18 | |
| | | | | | | | | | | | | shell window is present. (Original patch by Terry Reedy) | |||||
* | | | Issue #19928: Fix test on Windows | Zachary Ware | 2013-12-10 | 1 | -2/+2 | |
| | | | ||||||
* | | | #19943: fix typo noticed by Jakub Wilk. | Ezio Melotti | 2013-12-10 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #19407: add Python Packaging User Guide notes | Nick Coghlan | 2013-12-10 | 3 | -5/+32 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs. | |||||
* | | | Issue #19928: Implemented a test for repr() of cell objects. | Serhiy Storchaka | 2013-12-10 | 2 | -3/+11 | |
| | | | ||||||
* | | | Issue #19481: print() of string subclass instance in IDLE no more hangs. | Serhiy Storchaka | 2013-12-10 | 2 | -2/+10 | |
| | | | ||||||
* | | | Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. | Victor Stinner | 2013-12-10 | 2 | -4/+6 | |
| | | | ||||||
* | | | Add libmpdec license. | Stefan Krah | 2013-12-08 | 1 | -0/+33 | |
| | | | ||||||
* | | | Fix two typos. | Stefan Krah | 2013-12-08 | 2 | -2/+2 | |
| | | | ||||||
* | | | Missed one copyright. | Stefan Krah | 2013-12-08 | 1 | -1/+1 | |
| | | | ||||||
* | | | Update copyright. The four year increment is intentional (to save work). | Stefan Krah | 2013-12-08 | 33 | -33/+33 | |
| | | | ||||||
* | | | Issue #17429: Oops, remove unused import | Victor Stinner | 2013-12-08 | 1 | -1/+0 | |
| | | | ||||||
* | | | Issue #17429: platform.linux_distribution() now decodes files from the UTF-8 | Victor Stinner | 2013-12-08 | 4 | -2/+30 | |
| | | | | | | | | | | | | | | | | | | | | | encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | |||||
* | | | Fixes issue #19929: Call os.read with 32768 within subprocess.Popen | Gregory P. Smith | 2013-12-08 | 2 | -1/+5 | |
| | | | | | | | | | | | | | | | communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way. | |||||
* | | | #18430: Document that peek() may change the position of the underlying file for | Nadeem Vawda | 2013-12-08 | 3 | -0/+15 | |
| | | | | | | | | | | | | the BZ2File, GzipFile and LZMAFile classes. | |||||
* | | | Issue #19535: Fixed test_docxmlrpc when python is run with -OO. | Serhiy Storchaka | 2013-12-08 | 2 | -2/+6 | |
| | | | ||||||
* | | | Remove mentions of Python 2.x and being externally maintained from | Gregory P. Smith | 2013-12-08 | 1 | -5/+2 | |
| | | | | | | | | | | | | | | | the bundled json module. Replace that with a mention of it being a version of the externally maintained simplejson module. | |||||
* | | | Issue #19926: Removed unneeded test_main from test_abstract_numbers. | Zachary Ware | 2013-12-08 | 2 | -4/+3 | |
| | | | | | | | | | | | | Patch by Vajrasky Kok. | |||||
* | | | Normalize whitespace | Zachary Ware | 2013-12-08 | 1 | -1/+1 | |
| | | |