- 28 Dec, 2018 6 commits
-
-
Cheryl Sabella authored
This will be needed for other menu items. Change outwin to call the function instead of updating the menu item directly.
-
jab authored
-
Michael Felt authored
Command line options for the xlc compiler behave differently from gcc and clang, so skip this test case for now when xlc is the compiler. Patch by aixtools (Michael Felt)
-
Michael Felt authored
* Fix test_mktime on AIX by adding code to get mktime to behave the same way as it does on other *nix systems * Fix test_pthread_getcpuclickid in AIX by adjusting the test case expectations when running on AIX in 32-bit mode Patch by Michael Felt.
-
Terry Jan Reedy authored
-
Cheryl Sabella authored
A few other changes make the code easier to follow.
-
- 27 Dec, 2018 4 commits
-
-
Ned Deily authored
-
Ned Deily authored
This reverts commit 7cf3d8e2. Due to regressions found with using Tk 8.6.9.1, build the python.org macOS installers with Tcl/Tk 8.6.8 as used in previous releases. https://bugs.python.org/issue35402
-
-
Tal Einat authored
-
- 26 Dec, 2018 7 commits
-
-
Andrew Svetlov authored
bpo-35585: Speed up enum by-value lookup
-
Michael Felt authored
Depending on system config, a missing candidate compiler name may be reported as the empty string rather than as None, so adjust the test helper accordingly.
-
Michael Felt authored
AIX allows a trailing slash on local file system paths, which isn't what we want in http.server. Accordingly, check explicitly for this case in the server code, rather than relying on the OS raising an exception. Patch by Michael Felt.
-
Michael Felt authored
This test case needs "signed short" bitfields, but the IBM XLC compiler (on AIX) does not support this. Skip the code and test when AIX and XLC are used. Use __xlc__ as identifier to detect the XLC compiler.
-
Michael Felt authored
* use platform.system() as runtime test, rather than sys.platform() build-time test * IPv6 zone id support on AIX is limited to inet_pton6_zone(), so skip related getaddrinfo() and getnameinfo() tests as not supported
-
Raymond Hettinger authored
-
- 25 Dec, 2018 5 commits
-
-
Raymond Hettinger authored
* Revert part of "bpo-35565: Remove incorrect test and one that wasn't needed for the fix.
-
Cheryl Sabella authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Fix also handling non-ascii default values.
-
Serhiy Storchaka authored
-
- 24 Dec, 2018 8 commits
-
-
Mariatta authored
defines utility function -> defines utility functions Reported in https://mail.python.org/pipermail/docs/2018-December/038693.html
-
Tal Einat authored
-
Jess Shapiro authored
-
Andre Delfino authored
-
Andre Delfino authored
-
leodema authored
-
Cheryl Sabella authored
-
Chris Rands authored
-
- 23 Dec, 2018 6 commits
-
-
Cheryl Sabella authored
The Code Context menu item only works on Editor windows so disable it for others.
-
Ned Deily authored
`BLDSHARED` needs to have both `LDFLAGS` and `LDFLAGS_NODIST`, not just `LDFLAGS_NODIST`; `PY_CORE_LDFLAGS` provides both. For example, as it stands now with just `LDFLAGS_NODIST`, macOS universal builds are broken as the necessary `-arch` flags are no longer passed to the standard library extension module link step from `setup.py` resulting in extension modules being single architecture only. https://bugs.python.org/issue35257
-
Boštjan Mejak authored
-
Cheryl Sabella authored
-
Andre Delfino authored
-
Recursing authored
There is no need to create a list for `sum` Also, becomes consistent with the first example in Doc/library/os.rst
-
- 22 Dec, 2018 4 commits
-
-
Jean-François B authored
-
Serhiy Storchaka authored
"Include/token.h", "Lib/token.py" (containing now some data moved from "Lib/tokenize.py") and new files "Parser/token.c" (containing the code moved from "Parser/tokenizer.c") and "Doc/library/token-list.inc" (included in "Doc/library/token.rst") are now generated from "Grammar/Tokens" by "Tools/scripts/generate_token.py". The script overwrites files only if needed and can be used on the read-only sources tree. "Lib/symbol.py" is now generated by "Tools/scripts/generate_symbol_py.py" instead of been executable itself. Added new make targets "regen-token" and "regen-symbol" which are now dependencies of "regen-all". The documentation contains now strings for operators and punctuation tokens.
-
Cheryl Sabella authored
The Code Context menu label now toggles between Show/Hide Code Context. The Zoom Height menu now toggles between Zoom/Restore Height. Zoom Height has moved from the Window menu to the Options menu. https://bugs.python.org/issue22703
-
Matt McCormick authored
This addresses C extension build errors related to an undefined _hypot symbol when building with the Microsoft Visual C++ Compiler for Python 2.7 [1] or MinGWPy [2]. It also addresses errors when building a C++ extension with MinGWPy and C++11 from cmath, 'error "::hypot' has not been declared' [1] https://www.microsoft.com/en-us/download/details.aspx?id=44266 [2] https://mingwpy.github.io/
-