summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue #19919: Fix flacky SSL test. connect_ex() sometimes returnsChristian Heimes2013-12-162-2/+7
| | | | | | | | EWOULDBLOCK on Windows or VMs hosted on Windows.
* | Issue #19987: Re-write test_alias_fallback in test_winsound to have twoZachary Ware2013-12-162-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 headsSerhiy Storchaka2013-12-162-1/+3
|\ \
| * \ Merge.Charles-François Natali2013-12-161-0/+1
| |\ \
| | * | Issue #17919: add missing import of USHRT_MAXChristian Heimes2013-12-161-0/+1
| | | |
| * | | Merge.Charles-François Natali2013-12-164-4/+32
| |\ \ \ | | |/ /
| * | | Merge.Charles-François Natali2013-12-15116-552/+1088
| |\ \ \
| * | | | Issue #19965: Make sure that Python-ast.h is properly taken into account in theCharles-François Natali2013-12-151-1/+2
| | | | | | | | | | | | | | | | | | | | makefile.
* | | | | Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-163-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 'İ' characterSerhiy Storchaka2013-12-163-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 Murray2013-12-163-1/+28
| | | | | | | | | | | | | | | | Patch by Vajrasky Kok.
* | | | Issue #19986: Avoid an incorrect warning of older gcc versions.Stefan Krah2013-12-151-3/+4
| |/ / |/| |
* | | Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e.Serhiy Storchaka2013-12-146-45/+12
| | |
* | | Issue #19623: Fixed writing to unseekable files in the aifc module.Serhiy Storchaka2013-12-146-62/+103
| | |
* | | Issue #17919: Fixed integer overflow in the eventmask parameter.Serhiy Storchaka2013-12-144-17/+50
| | |
* | | Fix C++ header usage. This __STDC_LIMIT_MACROS scheme can still be subvertedStefan Krah2013-12-141-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 Melotti2013-12-141-2/+2
| | |
* | | #19970: Fix some comment typos.R David Murray2013-12-143-4/+4
| | | | | | | | | | | | Report and patch by Vajrasky Kok.
* | | Issue #19963: Document that importlib.import_module() will importBrett Cannon2013-12-132-2/+8
| | | | | | | | | | | | parent packages automatically.
* | | #18036: update .pyc FAQ entry in light of PEP 3147.R David Murray2013-12-131-18/+27
| | | | | | | | | | | | Initial patch by Phil Connell.
* | | Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c"Victor Stinner2013-12-133-3/+25
| | | | | | | | | | | | argument is not in range [0; 255].
* | | Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.Serhiy Storchaka2013-12-133-7/+4
| | |
* | | Issue #14432: Fix compilation when thread support is disabledVictor Stinner2013-12-131-0/+4
| | |
* | | Issue #14432: Generator now clears the borrowed reference to the thread stateVictor Stinner2013-12-134-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 Krah2013-12-121-7/+7
| | |
* | | Avoid UnicodeEncodeError by only printing ASCII.Zachary Ware2013-12-121-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 Ware2013-12-111-2/+6
| | |
* | | Issue #19828: Fixed test_site when the whole suite is run with -S.Zachary Ware2013-12-112-9/+10
| | | | | | | | | | | | Also, cleaned up an unused import.
* | | #19063: partially fix set_payload handling of non-ASCII string input.R David Murray2013-12-114-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 Storchaka2013-12-117-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 theGregory P. Smith2013-12-112-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 initialNed Deily2013-12-112-12/+18
| | | | | | | | | | | | shell window is present. (Original patch by Terry Reedy)
* | | Issue #19928: Fix test on WindowsZachary Ware2013-12-101-2/+2
| | |
* | | #19943: fix typo noticed by Jakub Wilk.Ezio Melotti2013-12-101-1/+1
| | |
* | | Issue #19407: add Python Packaging User Guide notesNick Coghlan2013-12-103-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 Storchaka2013-12-102-3/+11
| | |
* | | Issue #19481: print() of string subclass instance in IDLE no more hangs.Serhiy Storchaka2013-12-102-2/+10
| | |
* | | Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.Victor Stinner2013-12-102-4/+6
| | |
* | | Add libmpdec license.Stefan Krah2013-12-081-0/+33
| | |
* | | Fix two typos.Stefan Krah2013-12-082-2/+2
| | |
* | | Missed one copyright.Stefan Krah2013-12-081-1/+1
| | |
* | | Update copyright. The four year increment is intentional (to save work).Stefan Krah2013-12-0833-33/+33
| | |
* | | Issue #17429: Oops, remove unused importVictor Stinner2013-12-081-1/+0
| | |
* | | Issue #17429: platform.linux_distribution() now decodes files from the UTF-8Victor Stinner2013-12-084-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.PopenGregory P. Smith2013-12-082-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 forNadeem Vawda2013-12-083-0/+15
| | | | | | | | | | | | the BZ2File, GzipFile and LZMAFile classes.
* | | Issue #19535: Fixed test_docxmlrpc when python is run with -OO.Serhiy Storchaka2013-12-082-2/+6
| | |
* | | Remove mentions of Python 2.x and being externally maintained fromGregory P. Smith2013-12-081-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 Ware2013-12-082-4/+3
| | | | | | | | | | | | Patch by Vajrasky Kok.
* | | Normalize whitespaceZachary Ware2013-12-081-1/+1
| | |