- 28 Kas, 2018 2 kayıt (commit)
-
-
Victor Stinner yazdı
Create a new "doctest" job in Travis CI to run "make doctest".
-
Victor Stinner yazdı
Fix WithThreadsTestPool.test_wrapped_exception() of test_multiprocessing_fork: join the pool. WithThreadsTestPool.test_del_pool() is now also decorated with @support.reap_threads.
-
- 27 Kas, 2018 14 kayıt (commit)
-
-
Victor Stinner yazdı
Fix the following clang warning: Include/cpython/pystate.h:217:3: warning: redefinition of typedef 'PyThreadState' is a C11 feature [-Wtypedef-redefinition]
-
Serhiy Storchaka yazdı
Fix warnings with gcc 8 for wrapperfunc <-> wrapperfunc_kwds casts.
-
Anthony Sottile yazdı
-
Serhiy Storchaka yazdı
Fix also return type for few other functions (clear, releasebuffer).
-
Victor Stinner yazdı
Partically revert commit c2e1607a to fix a reference leak.
-
Victor Stinner yazdı
"make tags" and "make TAGS" now also parse Include/cpython/ header files.
-
Victor Stinner yazdı
'data' argument of unicode_fill() is modified, so it must not be constant. Add more assertions to unicode_fill(): check the maximum character value.
-
Victor Stinner yazdı
Fix mktime() overflow error in test_email: run test_localtime_daylight_true_dst_true() and test_localtime_daylight_false_dst_true() with a specific timezone.
-
Serhiy Storchaka yazdı
Fix invalid function cast warnings with gcc 8 for method conventions different from METH_NOARGS, METH_O and METH_VARARGS excluding Argument Clinic generated code.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Fix invalid function cast warnings with gcc 8 for method conventions different from METH_NOARGS, METH_O and METH_VARARGS in Argument Clinic generated code.
-
Serhiy Storchaka yazdı
The lineno and col_offset attributes of AST nodes for list comprehensions, generator expressions and tuples are now point to the opening parenthesis or square brace. For tuples without parenthesis they point to the position of the first item.
-
Zackery Spytz yazdı
test_reduce_ex() in test_array.py and test_reversevaluesiterator_pickling() in test_dict.py weren't using the highest pickle protocol.
-
E. M. Bray yazdı
-
- 26 Kas, 2018 18 kayıt (commit)
-
-
Victor Stinner yazdı
Move pystate.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/pystate.h header file.
-
Victor Stinner yazdı
* Move dictobject.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/dictobject.h header file. * Add PyAPI_FUNC() to _PyDictView_New(). * Reorganize dictobject.h: move views and iterators at the end.
-
Victor Stinner yazdı
Move pylifecycle.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/pylifecycle.h header file.
-
Victor Stinner yazdı
Move abstract.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/abstract.h header file.
-
Zhiming Wang yazdı
Regression introduced in e3ce6952 and 25b804a9, where the old parameter update_tryorder to _synthesize was first ignored, then given the opposite value in the attempt to fix bpo-31014.
-
Victor Stinner yazdı
Move pyerrors.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/pyerrors.h header file.
-
Victor Stinner yazdı
Tolerate up to 30 ms, instead of 15 min, in other threads.
-
Lisa Roach yazdı
-
Victor Stinner yazdı
Move unicodeobject.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/unicodeobject.h header file.
-
Mathieu Dupuy yazdı
-
Victor Stinner yazdı
* Move object.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/object.h header file. * "typedef struct _typeobject PyTypeObject;" is now always defined in object.h, but if Py_LIMITED_API is not defined, Include/cpython/object.h also defines the structure. * Complete the printfunc comment to mention Py_LIMITED_API define.
-
Victor Stinner yazdı
Log TZ to debug a timezone issue... and a few more :-)
-
Victor Stinner yazdı
Fix str.format(), float.__format__() and complex.__format__() methods for non-ASCII decimal point when using the "n" formatter. Changes: * Rewrite _PyUnicode_InsertThousandsGrouping(): it now requires a _PyUnicodeWriter object for the buffer and a Python str object for digits. * Rename FILL() macro to unicode_fill(), convert it to static inline function, add "assert(0 <= start);" and rework its code.
-
Victor Stinner yazdı
Add "assert(PyTuple_Check(op));" to _PyTuple_CAST() to check that the argument is a tuple object in debug mode. PyTuple_GET_SIZE() now uses _PyTuple_CAST() to get its assertion.
-
INADA Naoki yazdı
There are some same consts in a module. This commit merges them into single instance. It reduces number of objects in memory after loading modules. https://bugs.python.org/issue34100
-
Victor Stinner yazdı
* Remove an unused import. * Move get_expected_config() call to check_config() to ease backport to Python 3.7.
-
Victor Stinner yazdı
test_embed.InitConfigTests now gets the expected configuration from a child process run with -S to not run the site module.
-
-
- 25 Kas, 2018 4 kayıt (commit)
-
-
Victor Stinner yazdı
Move _PyTuple_ITEMS() to a new header file: Include/internal/pycore_tupleobject.h
-
Victor Stinner yazdı
-
Boštjan Mejak yazdı
-
Serhiy Storchaka yazdı
-
- 24 Kas, 2018 1 kayıt (commit)
-
-
Julien Palard yazdı
-
- 23 Kas, 2018 1 kayıt (commit)
-
-
Zackery Spytz yazdı
-