summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bpo-29770: remove outdated PYO related info (GH-590)Xiang Zhang2017-03-1110-31/+25
|
* bpo-29784: Fix the reference to shutil.copy in the docs (GH-602)Mariatta2017-03-111-2/+2
|
* bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250)Ivan Levkivskyi2017-03-101-31/+40
|
* bpo-29741: Clean up C implementations of BytesIO and StringIO. (#606)orenmn2017-03-104-120/+68
| | | Some BytesIO methods now accept not just int subclasses but other int-like types.
* bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239)Ivan Levkivskyi2017-03-101-4/+15
|
* bpo-28739: Document that f-strings cannot be used as docstring (GH-592)Mariatta2017-03-101-0/+11
|
* Ignore Include/pydtrace_probes.h (#597)Łukasz Langa2017-03-101-0/+1
| | | | This is a generated file when --with-dtrace is passed. This entry is present in .hgignore.
* bpo-29773: Add more cases for testing string to float conversion errors. (#580)Serhiy Storchaka2017-03-091-8/+20
|
* bpo-29619: Convert st_ino using unsigned integer (#557)Victor Stinner2017-03-094-9/+15
| | | | bpo-29619: os.stat() and os.DirEntry.inodeo() now convert inode (st_ino) using unsigned integers.
* bpo-29774: Improve error reporting for corrupted extra field in ZIP file. (#583)Serhiy Storchaka2017-03-091-1/+3
|
* bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements (#570)orenmn2017-03-093-61/+89
|
* bpo-29768: Fixed compile-time check for expat version. (#574)Serhiy Storchaka2017-03-091-1/+1
|
* bpo-29749: Update int() docstring (GH-565)svelankar2017-03-091-1/+1
| | | The docstring did not properly represent the fact that the argument to int() was positional-only.
* Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than ↵Serhiy Storchaka2017-03-082-26/+26
| | | | PyBool_FromLong(0)/PyBool_FromLong(1). (#567)
* Fix the only non-C90 comment to be C90 compatible. (#566)n.d. parker2017-03-081-1/+1
|
* Exit Travis when only Misc/* is changed. (#564)Serhiy Storchaka2017-03-081-2/+2
| | | No need to wait passing tests after resolving Misc/NEWS conflicts.
* bpo-29645: Speed up importing the webbrowser module. (#484)Serhiy Storchaka2017-03-083-79/+120
|
* bpo-28231: The zipfile module now accepts path-like objects for external ↵Serhiy Storchaka2017-03-084-21/+143
| | | | paths. (#511)
* bpo-28331: fix impl-detail label is removed when content is translated. (GH-195)INADA Naoki2017-03-082-2/+18
|
* bpo-28230: Document the pathlib support in tarfile and add tests. (#512)Serhiy Storchaka2017-03-082-4/+100
|
* Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554)Benjamin Peterson2017-03-082-10/+1
| | | This reverts commit ace5c0fdd9b962e6e886c29dbcea72c53f051dc4.
* allow the first call to wcsxfrm to return ERANGE (#536)Benjamin Peterson2017-03-081-1/+1
| | | If the output buffer provided to wcsxfrm is too small, errno is set to ERANGE. We should not error out in that case.
* make the glibc alias table take precedence over the X11 one (#422)Benjamin Peterson2017-03-084-43/+112
| | | bpo-20087
* bpo-29568: Disable any characters between two percents for escaped percent ↵Serhiy Storchaka2017-03-084-58/+57
| | | | "%%" in the format string for classic string formatting. (GH-513)
* bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495)Xiang Zhang2017-03-082-5/+51
|
* bpo-26915: Test identity first in membership operation in index() and ↵Xiang Zhang2017-03-083-6/+19
| | | | | | count() methods of collections.abc.Sequence (GH-503)
* bpo-28682: Added support for bytes paths in os.fwalk(). (#489)Serhiy Storchaka2017-03-075-15/+37
|
* PCbuild: Add -q option to svn export (GH-535)INADA Naoki2017-03-071-1/+1
| | | Without this option, AppVeyor log is too unreadable.
* bpo-29676: fix lsprof can't profile C method call. (GH523)INADA Naoki2017-03-071-1/+14
| | | | | | | | | | When LOAD_METHOD is used for calling C mehtod, PyMethodDescrObject was passed to profilefunc from 5566bbb. But lsprof traces only PyCFunctionObject. Additionally, there can be some third party extension which assumes passed arg is PyCFunctionObject without calling PyCFunction_Check(). So make PyCFunctionObject from PyMethodDescrObject when tstate->c_profilefunc is set.
* bpo-28728: clarify possible test failure due to ISP (GH-412)Xiang Zhang2017-03-071-5/+15
|
* Exclude myself from mention-bot (#529)Victor Stinner2017-03-071-1/+1
| | | | | | I made changes in almost all CPython files last 5 years, so mention-bot asks me to review basically all pull requests. I simply don't have the bandwidth to review everything, sorry! I prefer to select myself which PR I want to follow.
* bpo-29737: Optimize concatenating with empty tuple. (#524)Serhiy Storchaka2017-03-061-0/+8
|
* bpo-15954: Check return code of wcsxfrm(). (#508)Serhiy Storchaka2017-03-061-4/+12
|
* bpo-29695: Fixed tests after removing keyword args support in some basic ↵Serhiy Storchaka2017-03-061-8/+14
| | | | type constructors. (GH-520)
* Ignore What's New for MentionBot (GH-521)Matthias Bussonnier2017-03-061-1/+2
|
* The mention-bot is too exuberant for my taste. (#522)Stefan Krah2017-03-061-1/+1
|
* bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() ↵Serhiy Storchaka2017-03-0612-61/+31
| | | | and tuple(). (#518)
* bpo-29714: Fix a regression that bytes format may fail when containing zero ↵Xiang Zhang2017-03-063-2/+15
| | | | bytes inside. (GH-499)
* remove 3 redundant casts in Objects/longobject.c (#445)orenmn2017-03-061-3/+3
|
* bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-494)INADA Naoki2017-03-061-2/+0
|
* Fixes the upload script to purge the CDN correctly and display success ↵Steve Dower2017-03-061-0/+2
| | | | output. (#466)
* bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)Serhiy Storchaka2017-03-0512-2/+65
| | | | int(), bool(), float(), list() and tuple(). Specify the value as a positional argument instead.
* Add Appveyor (GH-324)Zachary Ware2017-03-052-0/+10
|
* bpo-29638: Fix spurious refleaks after typing is imported (#469)Ivan Levkivskyi2017-03-051-3/+8
|
* Change assertRaises to assertRaisesRegex in test_xmlrpc (#481)Dillon Brock2017-03-051-3/+3
|
* Docs: Add note regarding "reversed" flag in heapq.merge (#300)Adam Niederer2017-03-051-1/+3
| | | | | | | The docs for `heapq.merge` are a little misleading. Iterables passed into heapq.merge with the reversed flag enabled must be sorted from largest to smallest to achieve the desired sorting effect, but the previous paragraph states that they should be sorted from smallest to largest.
* distutils docs: Fix a typo (GH-470)Mariatta2017-03-051-1/+1
| | | instanciated -> instantiated
* remove merge=union attribute for Misc/NEWS (GH-460)INADA Naoki2017-03-041-2/+0
| | | | | | Github doesn't support it (ref. isaacs/github#487). So it can't ease conflict on Github. Additionally, it can make trouble when cherry-pick. (ref. GH-212)
* Correct spelling "instanciate" (#465)J. W2017-03-041-2/+2
|
* bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS. (#462)Ned Deily2017-03-043-0/+9
| | | | | | | * bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS Skip some tests of select.poll when running on macOS due to unresolved issues with the underlying system poll function on some macOS versions.