- 09 Jun, 2017 1 commit
-
-
adisbladis authored
-
- 08 Jun, 2017 9 commits
-
-
Serhiy Storchaka authored
'invalid character in identifier' now is raised instead of 'f-string: empty expression not allowed' if a subexpression contains only whitespaces and they are not accepted by Python parser.
-
Victor Stinner authored
Fix a reference leak in _io._WindowsConsoleIO: PyUnicode_FSDecoder() always initialize decodedname when it succeed and it doesn't clear input decodedname object.
-
Victor Stinner authored
On Windows, subprocess.Popen.communicate() now also ignore EINVAL on stdin.write() if the child process is still running but closed the pipe.
-
Lisa Roach authored
The cell_contents attribute of the cell object is now writable.
-
Serhiy Storchaka authored
Error messages when pass keyword arguments to some builtins that don't support keyword arguments contained double parenthesis: "()()". The regression was introduced by bpo-30534.
-
Victor Stinner authored
Fix a reference in subinterpreters, like test_callbacks_leak() of test_atexit. warnoptions is a list used to pass options from the command line to the sys module constructor. Before this change, the list was shared by multiple interpreter which is not the expected behaviour. Each interpreter should have their own independent mutable world. This change duplicates the list in each interpreter. So each interpreter owns its own list, so each interpreter can clear its own list.
-
Stéphane Wirtel authored
Fix regressions introduced by: - bpo-22257: commits 1abcf670 and 6b4be195Co-Authored-By: Victor Stinner <victor.stinner@gmail.com> Co-Authored-By: Louie Lu <git@louie.lu>
-
Nathaniel J. Smith authored
If pass a server_hostname= that fails IDNA decoding to SSLContext.wrap_socket or SSLContext.wrap_bio, then the SSLContext object had a spurious Py_DECREF called on it, eventually leading to segfaults.
-
Will Roberts authored
* bpo-30537: use PyNumber in itertools instead of PyLong * bpo-30537: revert changes except to islice_new * bpo-30537: test itertools.islice and add entry to Misc/NEWS
-
- 07 Jun, 2017 5 commits
-
-
Jonathan Eunice authored
-
Matthias Klose authored
* Update config.{guess,sub} from gnu.org.
-
Erik Bray authored
-
Denis Osipov authored
* Fix bpo-30584 * Adding a comment mentionning the bpo and explaining what is the identifier * Add Denis Osipov to Misc/ACKS
-
Antoine Pietri authored
-
- 06 Jun, 2017 10 commits
-
-
Aaron Hall, MBA authored
-
gfyoung authored
Clarify that `two-pass` buffer can only be dumped once, and it prints out all text sent to it during all processing, even from Clinic blocks *after* the dumping point.
-
wim glenn authored
Replace `datetuil` into `dateutil`
-
Victor Stinner authored
On Windows 8, 8.1 and 10 at least, the exit code is the exception code (no bit is cleared).
-
Serhiy Storchaka authored
to functions implemented in C that don't support this. Also unified error messages for functions that don't take positional or keyword arguments.
-
Serhiy Storchaka authored
-
Vinay Sajip authored
Implemented pickling for loggers.
-
Alex Gaynor authored
* Simplify X.509 extension handling code The previous implementation had grown organically over time, as OpenSSL's API evolved. * Delete even more code
-
Oz N Tiram authored
Several class attributes have been added to calendar.HTMLCalendar that allow customization of the CSS classes used in the resulting HTML. This can be done by subclasses HTMLCalendar and overwriting those class attributes (Patch by Oz Tiram).
-
Zachary Ware authored
-
- 05 Jun, 2017 3 commits
-
-
Zachary Ware authored
Also weakens the 'should this be run?' regex to allow all builds when .travis.yml changes.
-
Steve Dower authored
* bpo-30557: faulthandler now correctly filters and displays exception codes on Windows * Adds test for non-fatal exceptions. * Adds bpo number to comment.
-
Mariano Anaya authored
Update the code example in Functions and Methods section Remove objtype argument in MethodType
-
- 04 Jun, 2017 5 commits
-
-
Zachary Ware authored
Also on the short-lived `buildbot-custom` branch.
-
Segev Finer authored
-
csabella authored
* bpo-30538: Update count() in Functional HOWTO * bpo-30538: Update enumerate() arguments in Functional HOWTO
-
Alex Gaynor authored
Metaprogramming a list of attributes was excessive, and made the code less readable and slower.
-
leodema authored
-
- 03 Jun, 2017 2 commits
-
-
Brett Cannon authored
Initially the macOS builds are allowed to fail until such time that they can be determined to be stable and not add an unacceptable amount of time to the overall Travis-passing process.
-
Antoine Pitrou authored
* Fix bpo-30526: Add TextIOWrapper.reconfigure() * Apply Nick's improved wording * Update Misc/NEWS
-
- 02 Jun, 2017 5 commits
-
-
Jamiel Almeida authored
-
Segev Finer authored
We get `ERROR_BAD_NETPATH` (53) on AppVeyor which is translated to ENOENT (2).
-
Segev Finer authored
* bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails * bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails
-
Nick Coghlan authored
* bpo-30052: Always regenerate cross-references The patch for bpo-30052 changed the preferred link target for :func:`bytes` and :func`bytearray` references to be the respective type definitions rather than the corresponding builtin function entries. This patch changes the daily documentation builds to disable the output caching in Sphinx, in order to ensure that cross-reference changes like this one are reliably picked up and applied automatically after merging.
-
Johan Liu authored
-