Xiang Zhang
b2d77175d1
bpo-29756: Improve documentation for list methods that compare items by equality (GH-572)
9 years ago
Oren Milman
004251059b
bpo-29730: replace some calls to PyNumber_Check and improve some error messages ( #650 )
9 years ago
Yury Selivanov
b7c9150b68
Fix wrapping into StopIteration of return values in generators and coroutines ( #644 )
9 years ago
Nikolay Kim
2b27e2e6a3
bpo-29742: asyncio get_extra_info() throws exception ( #525 )
9 years ago
Serhiy Storchaka
783d0c1a1c
bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. ( #501 )
FreeBSD is the only platforms with unsigned FD_SETSIZE.
9 years ago
Serhiy Storchaka
bc44f045e6
bpo-15695: Add PyAPI_FUNC() to _PyDict_SizeOf() declaration. ( #639 )
9 years ago
Serhiy Storchaka
4125e5c60e
bpo-26121: Revert to using the own implementations of lgamma and gamma on all platforms. ( #637 )
9 years ago
Serhiy Storchaka
c2cf128571
bpo-8256: Fixed possible failing or crashing input() ( #517 )
if attributes "encoding" or "errors" of sys.stdin or sys.stdout
are not set or are not strings.
9 years ago
Serhiy Storchaka
4dadcd4ed7
bpo-26121: Use C library implementation for math functions erf() and erfc() on Windows. ( #632 )
9 years ago
Nick Coghlan
27abb0e533
bpo-29723: Add missing NEWS entry ( #638 )
9 years ago
Serhiy Storchaka
f6595983e0
bpo-28692: Deprecate using non-integer value for selecting a plural form in gettext. ( #507 )
9 years ago
Serhiy Storchaka
1989763f0d
bpo-20185: Convert the resource moduel to Argument Clinic. ( #545 )
Based on patch by Vajrasky Kok.
9 years ago
Nick Coghlan
d2977a3ae2
bpo-29723: Consistently configure sys.path[0] ( #575 )
Directory and zipfile execution previously added
the parent directory of the directory or zipfile
as sys.path[0] and then subsequently overwrote
it with the directory or zipfile itself.
This caused problems in isolated mode, as it
overwrote the "stdlib as a zip archive" entry
in sys.path, as the parent directory was
never added.
The attempted fix to that issue in bpo-29319
created the opposite problem in *non*-isolated
mode, by potentially leaving the parent
directory on sys.path instead of overwriting it.
This change fixes the root cause of the problem
by removing the whole "add-and-overwrite" dance
for sys.path[0], and instead simply never adds
the parent directory to sys.path in the first
place.
9 years ago
Nick Coghlan
6a6d090612
bpo-29798: Handle git worktree in `make patchcheck` ( #629 )
In git worktree directories, `.git` is a configuration
file rather than a subdirectory
9 years ago
Serhiy Storchaka
8999caeb00
bpo-15695: Implemented StgDict.__sizeof__(). ( #509 )
9 years ago
Serhiy Storchaka
202fda55c2
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. ( #485 )
9 years ago
Serhiy Storchaka
0767ad40bf
bpo-20185: Convert the marshal module to Argument Clinic. ( #541 )
Based on patch by Vajrasky Kok.
9 years ago
Serhiy Storchaka
c611a5b1d4
bpo-29746: Update marshal docs to Python 3. ( #547 )
9 years ago
Zachary Ware
93710c152e
bpo-29763: Use support.unlink instead of os.unlink (GH-624)
support.unlink waits for the files to be removed before returning
9 years ago
Nick Coghlan
482f7a274f
bpo-29656: Handle PR branches in 'make patchcheck' ( #302 )
9 years ago
Serhiy Storchaka
97553fdf9d
bpo-26121: Use C library implementation for math functions: ( #515 )
* bpo-26121: Use C library implementation for math functions:
tgamma(), lgamma(), erf() and erfc().
* Don't use tgamma() and lgamma() from libc on OS X.
9 years ago
Zachary Ware
c5d3bfea0b
Only trigger AppVeyor on code or config changes (GH-611)
9 years ago
Jelle Zijlstra
d3b8f98696
tempfile.rst: Fix some typos (GH-610)
9 years ago
Serhiy Storchaka
b5c51d3dd9
bpo-20185: Convert float object implementation to Argument Clinic. ( #543 )
Based on patch by Vajrasky Kok.
9 years ago
Serhiy Storchaka
fdd42c481e
bpo-20185: Convert list object implementation to Argument Clinic. ( #542 )
9 years ago
Xiang Zhang
0710d75425
bpo-29770: remove outdated PYO related info (GH-590)
9 years ago
Mariatta
70ee0cd5c2
bpo-29784: Fix the reference to shutil.copy in the docs (GH-602)
9 years ago
Ivan Levkivskyi
4b2a2a425a
bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250)
9 years ago
orenmn
740025478d
bpo-29741: Clean up C implementations of BytesIO and StringIO. ( #606 )
Some BytesIO methods now accept not just int subclasses but other int-like types.
9 years ago
Ivan Levkivskyi
7e52c3e7ae
bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239)
9 years ago
Mariatta
d4e89287b3
bpo-28739: Document that f-strings cannot be used as docstring (GH-592)
9 years ago
Łukasz Langa
50da40fd52
Ignore Include/pydtrace_probes.h ( #597 )
This is a generated file when --with-dtrace is passed. This entry is
present in .hgignore.
9 years ago
Serhiy Storchaka
9e6ac83aca
bpo-29773: Add more cases for testing string to float conversion errors. ( #580 )
9 years ago
Victor Stinner
0f6d73343d
bpo-29619: Convert st_ino using unsigned integer ( #557 )
bpo-29619: os.stat() and os.DirEntry.inodeo() now convert inode
(st_ino) using unsigned integers.
9 years ago
Serhiy Storchaka
feccdb2a24
bpo-29774: Improve error reporting for corrupted extra field in ZIP file. ( #583 )
9 years ago
orenmn
964281af59
bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements ( #570 )
9 years ago
Serhiy Storchaka
22e707fa04
bpo-29768: Fixed compile-time check for expat version. ( #574 )
9 years ago
svelankar
390a0969c1
bpo-29749: Update int() docstring (GH-565)
The docstring did not properly represent the fact that the argument to int() was positional-only.
9 years ago
Serhiy Storchaka
370fd202f1
Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_FromLong(1). ( #567 )
9 years ago
n.d. parker
f7eda3882e
Fix the only non-C90 comment to be C90 compatible. ( #566 )
9 years ago
Serhiy Storchaka
4a2ffce791
Exit Travis when only Misc/* is changed. ( #564 )
No need to wait passing tests after resolving Misc/NEWS conflicts.
9 years ago
Serhiy Storchaka
a7cba27aea
bpo-29645: Speed up importing the webbrowser module. ( #484 )
9 years ago
Serhiy Storchaka
8606e9524a
bpo-28231: The zipfile module now accepts path-like objects for external paths. ( #511 )
9 years ago
INADA Naoki
c351ce6a2c
bpo-28331: fix impl-detail label is removed when content is translated. (GH-195)
9 years ago
Serhiy Storchaka
c45cd167d4
bpo-28230: Document the pathlib support in tarfile and add tests. ( #512 )
9 years ago
Benjamin Peterson
21a74312f2
Revert "bpo-29571: Use correct locale encoding in test_re ( #149 )" ( #554 )
This reverts commit ace5c0fdd9 .
9 years ago
Benjamin Peterson
ad4a0cc519
allow the first call to wcsxfrm to return ERANGE ( #536 )
If the output buffer provided to wcsxfrm is too small, errno is set to ERANGE. We should not error out in that case.
9 years ago
Benjamin Peterson
02371e0ed1
make the glibc alias table take precedence over the X11 one ( #422 )
bpo-20087
9 years ago
Serhiy Storchaka
9f8ad3f39e
bpo-29568: Disable any characters between two percents for escaped percent "%%" in the format string for classic string formatting. (GH-513)
9 years ago
Xiang Zhang
c393ee8589
bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495)
9 years ago