- 12 Aug, 2018 4 commits
-
-
Raymond Hettinger authored
-
Vadim Pushtaev authored
-
Andrés Delfino authored
-
Raymond Hettinger authored
Improves speed by 9 to 10ns per call.
-
- 11 Aug, 2018 7 commits
-
-
Raymond Hettinger authored
-
Sergey Fedoseev authored
-
Evan Allrich authored
-
Paul Price authored
Valgrind isn't seeing PyObject_Free/PyObject_Realloc, but using _PyObject_Free/_PyObject_Realloc works.
-
Berker Peksag authored
The main cause of this bug was fixed as part of bpo-31908.
-
Berker Peksag authored
The __getitem__ methods of DOMEventStream, FileInput, and FileWrapper classes ignore their 'index' parameters and return the next item instead.
-
Berker Peksag authored
-
- 10 Aug, 2018 2 commits
- 09 Aug, 2018 4 commits
-
-
Alex Grönholm authored
-
Andriy Maletsky authored
-
Andrés Delfino authored
-
Stéphane Wirtel authored
In the documentation, the `env` directory is specified when we execute the `make venv` command. But in the code, `make venv` will create the virtualenv inside the `venv` directory (defined by `VENVDIR`)
-
- 08 Aug, 2018 2 commits
-
-
Alex Grönholm authored
Co-authored-by: Antti Haapala <antti.haapala@anttipatterns.com>
-
Benjamin Peterson authored
posixmodule.c always declares environ, so don't bother catching a NameError in os.py.
-
- 07 Aug, 2018 5 commits
-
-
Sergey Fedoseev authored
-
Mikhail Terekhov authored
-
Steve Dower authored
-
Zackery Spytz authored
PyErr_Print() always clears the error indicator, so there is no need to call PyErr_Clear() immediately afterwards.
-
Berker Peksag authored
-
- 06 Aug, 2018 5 commits
-
-
Berker Peksag authored
-
Xtreak authored
Patch by Terry Jan Reedy.
-
Serhiy Storchaka authored
-
Terry Jan Reedy authored
* bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. The change in the mini language floating point and decimal table is consistent with 'Exponential notation' and clarifies that we are referring to the output notation, not an object type. * Update string.rst * Update string.rst * Update string.rst * Update string.rst
-
Anthony Sottile authored
-
- 05 Aug, 2018 2 commits
-
-
Ville Skyttä authored
-
Tal Einat authored
* make CallTip and ToolTip sub-classes of a common abstract base class * remove ListboxToolTip (unused and ugly) * greatly increase test coverage * tested on Windows, Linux and macOS
-
- 03 Aug, 2018 9 commits
-
-
Berker Peksag authored
-
Victor Stinner authored
bpo-34170, bpo-34326: Fix pymain_run_file(): use PyRun_AnyFileExFlags(closeit=1) instead of calling fclose(fp) explicitly to close the input file before running the code.
-
Stefan Otte authored
-
Victor Stinner authored
If coerce_c_locale is already set (>= 0), use its value: don't override it.
-
Marcel Plch authored
When the filesystem doesn't support files with large timestamps, skip testing that such files can be zipped.
-
Victor Stinner authored
sys_setcheckinterval() now uses a local variable to parse arguments, before writing into interp->check_interval.
-
INADA Naoki authored
-
Andrés Delfino authored
Remove unnecessary "that" in the sentence.
-
Terry Jan Reedy authored
Some MacOS-tk combinations need .update_idletasks(). The call is both unneeded and innocuous on Linux and Windows. Patch by Kevin Waltzer.
-