summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Merge issue #26355 fix from 3.6Nick Coghlan2017-02-093-52/+747
|\
| * Prohibit implicit C function declarationsVictor Stinner2017-02-061-0/+4
| | | | | | | | | | | | | | Issue #27659: use -Werror=implicit-function-declaration when possible (GCC and Clang, but it depends on the compiler version). Patch written by Chi Hsuan Yen.
| * Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-0/+2
| |\
| * \ Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev)Steve Dower2017-02-042-0/+3
| |\ \
| * \ \ Merge issue #28164 and issue #29409Steve Dower2017-02-041-0/+4
| |\ \ \
| * \ \ \ Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-043-49/+740
| |\ \ \ \
| | * \ \ \ Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+2
| | |\ \ \ \
| | * \ \ \ \ Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-043-47/+738
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | the match object. Based on patch by WGH.
| | | * | | | | Issue #29368: The extend() method is now called instead of the append()Serhiy Storchaka2017-02-021-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | method when unpickle collections.deque and other list-like objects. This can speed up unpickling to 2 times.
| | | * | | | | Issue #29377: Add three new wrappers to types.py (Manuel Krebber).Guido van Rossum2017-02-011-0/+4
| | | | | | | |
| | | * | | | | python-gdb.py supports method-wrapperVictor Stinner2017-02-011-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #29367: python-gdb.py now supports also method-wrapper (wrapperobject) objects.
| | | * | | | | Merge 3.6doko2017-02-013-47/+727
| | | |\ \ \ \ \
| | | | * | | | | Issue #29218: Remove unused install_misc commandBerker Peksag2017-02-011-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been documented as unused since 6c6844a2fa30 (2000-05-25) Patch by Eric N. Vander Weele.
| | | | * | | | | merge 3.6doko2017-01-313-47/+724
| | | | |\ \ \ \ \
| | | | | * | | | | Issue #28822: Add susp-ignored entry for NEWS; fix grammarMartin Panter2017-01-291-1/+1
| | | | | | | | | |
| | | | | * | | | | Issue #29384: Remove Be OS scripts from Modules/, unused in 3.0+Martin Panter2017-01-291-0/+2
| | | | | | | | | |
| | | | | * | | | | Issues #29349: Add NEWS for 3.7; use ?with? statementMartin Panter2017-01-291-0/+2
| | | | | | | | | |
| | | | | * | | | | Issues #29349: Merge Py 2 fix 3.6Martin Panter2017-01-293-48/+721
| | | | | |\ \ \ \ \
| | | | | | * \ \ \ \ Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced withSerhiy Storchaka2017-01-253-47/+720
| | | | | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a macro if Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher. Added functions PySlice_Unpack() and PySlice_AdjustIndices().
| | | | | | | * \ \ \ \ Issue #29083: Fixed the declaration of some public API functions.Serhiy Storchaka2017-01-243-44/+716
| | | | | | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN is defined.
| | | | | | | | * \ \ \ \ Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-243-44/+716
| | | | | | | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Warnings could be emitted at compile time.
| | | | | | | | | * \ \ \ \ Merge 3.6Victor Stinner2017-01-233-44/+716
| | | | | | | | | |\ \ \ \ \
| | | | | | | | | | * | | | | Issue #29338: The help of a builtin or extension class now includes theSerhiy Storchaka2017-01-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | constructor signature if __text_signature__ is provided for the class.
| | | | | | | | | | * | | | | Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-223-44/+713
| | | | | | | | | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exited to a stopped instead of terminated state (ex: when under ptrace).
| | | | | | | | | | | * | | | | Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()Serhiy Storchaka2017-01-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is now of type "const char *" rather of "char *".
| | | | | | | | | | | * | | | | Issue #29290: Merge 3.6.Xiang Zhang2017-01-221-0/+3
| | | | | | | | | | | |\ \ \ \ \
| | | | | | | | | | | * \ \ \ \ \ Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.Serhiy Storchaka2017-01-211-0/+2
| | | | | | | | | | | |\ \ \ \ \ \
| | | | | | | | | | | * | | | | | | Issue #29282: Backed out changeset b33012ef1417Mark Dickinson2017-01-211-3/+0
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | | | Issue #29282: add fused multiply-add function, math.fma.Mark Dickinson2017-01-211-0/+3
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | | | Update Misc/NEWS and Misc/HISTORY from current 3.5 and 3.4 branches.Ned Deily2017-01-202-49/+3669
| | | | | | | | | | | |\ \ \ \ \ \ \
| | | | | | | | | | | * \ \ \ \ \ \ \ Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().Serhiy Storchaka2017-01-201-0/+3
| | | | | | | | | | | |\ \ \ \ \ \ \ \
| | | | | | | | | | | * | | | | | | | | Repeat ?when pass? fixes for 3.7 sectionMartin Panter2017-01-141-3/+3
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | | | | | Merge doc fixes from 3.6Martin Panter2017-01-141-3/+3
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | | | | | * | | | | | | | | | Issue #29197: Removed deprecated function ntpath.splitunc().Serhiy Storchaka2017-01-131-1/+3
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | | | | | | Issue #29210: Removed support of deprecated argument "exclude" inSerhiy Storchaka2017-01-131-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tarfile.TarFile.add().
| | | | | | | | | | | * | | | | | | | | | Issue #29219: Fixed infinite recursion in the repr of uninitializedSerhiy Storchaka2017-01-131-0/+3
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ctypes.CDLL instances.
| | | | | | | | | | | * | | | | | | | | | | Issue #29192: Removed deprecated features in the http.cookies module.Serhiy Storchaka2017-01-131-0/+2
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | | | | | | | Issue #29193: A format string argument for string.Formatter.format()Serhiy Storchaka2017-01-131-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is now positional-only.
| | | | | | | | | | | * | | | | | | | | | | Issue #29195: Removed support of deprecated undocumented keyword argumentsSerhiy Storchaka2017-01-131-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in methods of regular expression objects.
| | | | | | | | | | | * | | | | | | | | | | Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-0/+4
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments.
| | | | | | | | | | | * | | | | | | | | | | | Issue #20804: The unittest.mock.sentinel attributes now preserve theirSerhiy Storchaka2017-01-111-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | identity when they are copied or pickled.
| | | | | | | | | | | * | | | | | | | | | | | Issue #29239: Merge bug number from 3.6Martin Panter2017-01-113-41/+696
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Issue #29142: Merge 3.6.Xiang Zhang2017-01-091-0/+4
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ Issue #29034: Merge 3.6.Xiang Zhang2017-01-081-0/+2
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ Merge 3.6Victor Stinner2017-01-063-37/+696
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ Merge 3.6INADA Naoki2017-01-061-0/+2
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #26851: Merge 3.6.Xavier de Gaye2017-01-043-37/+696
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | * | | | | | | | | | | | | | | Issue #24932: Use proper command line parsing in _testembedSteve Dower2017-01-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | * | | | | | | | | | | | | | | Issue #15812: Merge from 3.6Berker Peksag2017-01-021-0/+3
| | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | * | | | | | | | | | | | | | | | Issue #28985: Update authorizer constants in sqlite3 moduleBerker Peksag2017-01-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dates and version information from the changelog: * 2006-08-12 (3.3.7) added SQLITE_CREATE_VTABLE, SQLITE_DROP_VTABLE * 2006-10-09 (3.3.8) added SQLITE_FUNCTION * 2009-01-12 (3.6.8) added SQLITE_SAVEPOINT * 2014-02-03 (3.8.3) added SQLITE_RECURSIVE Patch by Dingyuan Wang.