- 11 Agu, 2018 4 kayıt (commit)
-
-
Paul Price yazdı
Valgrind isn't seeing PyObject_Free/PyObject_Realloc, but using _PyObject_Free/_PyObject_Realloc works.
-
Berker Peksag yazdı
The main cause of this bug was fixed as part of bpo-31908.
-
Berker Peksag yazdı
The __getitem__ methods of DOMEventStream, FileInput, and FileWrapper classes ignore their 'index' parameters and return the next item instead.
-
Berker Peksag yazdı
-
- 10 Agu, 2018 2 kayıt (commit)
- 09 Agu, 2018 4 kayıt (commit)
-
-
Alex Grönholm yazdı
-
Andriy Maletsky yazdı
-
Andrés Delfino yazdı
-
Stéphane Wirtel yazdı
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 Agu, 2018 2 kayıt (commit)
-
-
Alex Grönholm yazdı
Co-authored-by: Antti Haapala <antti.haapala@anttipatterns.com>
-
Benjamin Peterson yazdı
posixmodule.c always declares environ, so don't bother catching a NameError in os.py.
-
- 07 Agu, 2018 5 kayıt (commit)
-
-
Sergey Fedoseev yazdı
-
Mikhail Terekhov yazdı
-
Steve Dower yazdı
-
Zackery Spytz yazdı
PyErr_Print() always clears the error indicator, so there is no need to call PyErr_Clear() immediately afterwards.
-
Berker Peksag yazdı
-
- 06 Agu, 2018 5 kayıt (commit)
-
-
Berker Peksag yazdı
-
Xtreak yazdı
Patch by Terry Jan Reedy.
-
Serhiy Storchaka yazdı
-
Terry Jan Reedy yazdı
* 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 yazdı
-
- 05 Agu, 2018 2 kayıt (commit)
-
-
Ville Skyttä yazdı
-
Tal Einat yazdı
* 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 Agu, 2018 12 kayıt (commit)
-
-
Berker Peksag yazdı
-
Victor Stinner yazdı
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 yazdı
-
Victor Stinner yazdı
If coerce_c_locale is already set (>= 0), use its value: don't override it.
-
Marcel Plch yazdı
When the filesystem doesn't support files with large timestamps, skip testing that such files can be zipped.
-
Victor Stinner yazdı
sys_setcheckinterval() now uses a local variable to parse arguments, before writing into interp->check_interval.
-
INADA Naoki yazdı
-
Andrés Delfino yazdı
Remove unnecessary "that" in the sentence.
-
Terry Jan Reedy yazdı
Some MacOS-tk combinations need .update_idletasks(). The call is both unneeded and innocuous on Linux and Windows. Patch by Kevin Waltzer.
-
Lysandros Nikolaou yazdı
Rephrase it to "It raises a `ValueError`"
-
HiyashiChuka yazdı
-
Victor Stinner yazdı
Multiprocessing test_timeout() now accepts a delta of 100 ms instead of just 50 ms, since the test failed with 135.8 ms instead of the expected 200 ms.
-
- 02 Agu, 2018 4 kayıt (commit)
-
-
Victor Stinner yazdı
* Inline pymain_run_file() and pymain_open_filename() into pymain_run_filename() * Created pymain_run_stdin() which is pymain_run_filename() with filename=NULL * Rename pymain_run_filename() to pymain_run_file()
-
torsava yazdı
In the documentation for the traceback module, the definitions of functions extract_tb(), format_list() and classmethod StackSummary.from_list() mention the old style 4-tuples that these functions used to return or accept. Since Python 3.5, however, they return or accept a FrameSummary object instead of a 4-tuple, or a StackSummary object instead of a list of 4-tuples. Co-Authored-By: Berker Peksag <berker.peksag@gmail.com>
-
Marcel Plch yazdı
ZipFile can zip files older than 1980-01-01 and newer than 2107-12-31 using a new strict_timestamps parameter at the cost of setting the timestamp to the limit.
-
jdemeyer yazdı
-