- 21 Haz, 2017 4 kayıt (commit)
-
-
Dong-hee Na yazdı
* bpo-30616: Functional API of enum allows to create empty enums. * Update NEWS move addition to avoid conflict
-
Victor Stinner yazdı
New file: Modules/expat/siphash.h.
-
KunYuChen yazdı
Comceptually -> Conceptually
-
Daniel Porteous yazdı
-
- 20 Haz, 2017 8 kayıt (commit)
-
-
dong-jy yazdı
-
Kojo Idrissa yazdı
Improve the description of the high and low parameters for set_write_buffer_limits. Also fixed a small grammatical issue.
-
Victor Stinner yazdı
* Make PyTraceMalloc_Track() and PyTraceMalloc_Untrack() functions public (remove the "_" prefix) * Remove the _PyTraceMalloc_domain_t type: use directly unsigned int. * Document methods Note: methods are already tested in test_tracemalloc.
-
Serhiy Storchaka yazdı
They now always return bytes. Updated the gettext documentation.
-
Victor Stinner yazdı
splithost() expects an URL starting with "//" not with "http://".
-
Sanyam Khurana yazdı
-
postmasters yazdı
The current regex based splitting produces a wrong result. For example:: http://abc#@def Web browsers parse that URL as ``http://abc/#@def``, that is, the host is ``abc``, the path is ``/``, and the fragment is ``#@def``.
-
Motoki Naruse yazdı
-
- 19 Haz, 2017 1 kayıt (commit)
-
-
Steve Dower yazdı
* Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat Also fixes bdist_wininst.vcxproj to use correct version in generated name.
-
- 18 Haz, 2017 1 kayıt (commit)
-
-
Nick Coghlan yazdı
- removes PY_WARN_ON_C_LOCALE build time flag - locale coercion and compatibility warnings are now always compiled in, but are off by default - adds PYTHONCOERCECLOCALE=warn runtime option to aid in debugging potentially locale related compatibility problems Due to not-yet-resolved test failures on *BSD systems (including Mac OS X), this also temporarily disables UTF-8 as a locale coercion target, and skips testing the interpreter's behavior in the POSIX locale.
-
- 17 Haz, 2017 3 kayıt (commit)
-
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Motoki Naruse yazdı
elem is the result of .lower() 6 lines above the handle_endtag call. Patch by Motoki Naruse
-
- 16 Haz, 2017 12 kayıt (commit)
-
-
Victor Stinner yazdı
This reverts commit 258bfc46.
-
Louie Lu yazdı
* bpo-30523: Add --list-cases unittest * Addressed haypo's request * Addressed haypo's request
-
ericvsmith yazdı
This caused a segfault on eval("f'\\\n'") and eval("f'\\\r'") in debug build.
-
mlouielu yazdı
* bpo-30523: regrtest: Add --list-cases option * bpo-30523: Enhance --list-cases * Add get_abs_module() function, use it in list_cases() * list_cases() now logs skipped tests into stderr * Remove unused doctest
-
Victor Stinner yazdı
-
terryjreedy yazdı
-
Zachary Ware yazdı
-
Xiang Zhang yazdı
-
Segev Finer yazdı
-
Zachary Ware yazdı
The Windows build now depends on Python 3.6 to fetch externals, but it will be downloaded via NuGet (which is downloaded via PowerShell) if it is not available via `py -3.6`. This means the only thing that must be installed on a modern Windows box to do a full build of CPython with all extensions is Visual Studio. Also fixes an outdated note about _lzma in PCbuild/readme.txt
-
Jonathan Eunice yazdı
-
Jonathan Eunice yazdı
* test dedent with declining indent level * add textwrap.dedent test cases
-
- 15 Haz, 2017 5 kayıt (commit)
-
-
Victor Stinner yazdı
-
Serhiy Storchaka yazdı
In rare circumstances PyImport_Import() could return NULL without raising an error.
-
Sylvain yazdı
-
Victor Stinner yazdı
When os.spawnv() fails while handling arguments, free correctly argvlist: pass lastarg+1 rather than lastarg to free_string_array() to also free the first item.
-
Nick Coghlan yazdı
In the C locale on Mac OS X, the default filesystem encoding used for operating system interfaces is UTF-8, but the default encoding used on the standard streams is still ASCII. Setting the POSIX locale also behaves differently from setting other locales on Mac OS X, so skip that in the test suite for now.
-
- 14 Haz, 2017 6 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 * bpo-29591: Restore Python changes on expat * bpo-29591: Remove expat config of unsupported platforms Remove the configuration (Modules/expat/*config.h) of unsupported platforms: * Amiga * MacOS Classic on PPC32 * Open Watcom * bpo-29591: Remove useless XML_HAS_SET_HASH_SALT The XML_HAS_SET_HASH_SALT define of Modules/expat/expat.h became useless since our local expat copy was upgrade to expat 2.1 (it's now expat 2.2.0).
-
Victor Stinner yazdı
Use a build/ directory in the build directory, not in the source directory, since the source directory may be read-only and must not be modified. Fallback on the source directory if the build directory is not available (missing "abs_builddir" sysconfig variable).
-
Milan Oberkirch yazdı
bpo-30436: Raise ModuleNotFoundError for importlib.util.find_spec() when parent isn't a package (GH-1899) Previously AttributeError was raised, but that's not very reflective of the fact that the requested module can't be found since the specified parent isn't actually a package.
-
terryjreedy yazdı
Before, <return> would not, for instance, complete 're.c' to 're.compile' even with 'compile' highlighted. Now it does. Before, <return> was inserted into text, which in Shell meant compile() and possibly execute. Now cursor is left after completion.
-
Victor Stinner yazdı
The public cyrus.andrew.cmu.edu IMAP server (port 993) doesn't accept TLS connection using our self-signed x509 certificate. Remove the two tests which are already skipped. Write a new test_certfile_arg_warn() unit test for the certfile deprecation warning.
-
mlouielu yazdı
The root problem was non-check for hide_event. When user clicks on autocomplete window (acw), root widget gets focusOut event, then triggers hide_window to close the acw. It should only be hide when acw is active, and acw didn't get focus at FocusOut event (this event bind on acw and widget), or when widget get a ButtonPress event (this event only bind on widget). MacOS froze after double click on acw because when doubleclick_event try to hide window at the end, hide_window function destory whole acw, but tkinter didn't get focus back to widget. So set focus on widget first, then destory acw. Windows could not respond on double click event, because of the misbehavior of Configure event. When acw was shown, tkinter called winconfig event multiple times. That caused tkinter to not response to double click event. When on Windows, unbind Configure event first time get into winconfig_event to prevent multiple call of this event.
-