cpython
cpython copied to clipboard
The Python programming language
BPO | [26049](https://bugs.python.org/issue26049) --- | :--- Nosy | @loewis, @terryjreedy, @cedk, @serhiy-storchaka Files | [python27.patch](https://bugs.python.org/file41535/python27.patch "Uploaded as text/plain at 2016-01-08.14:32:54 by pokoli")[default.patch](https://bugs.python.org/file41536/default.patch "Uploaded as text/plain at 2016-01-08.16:05:39 by pokoli")[default.patch](https://bugs.python.org/file41545/default.patch "Uploaded...
In the help_about module of IDLE, convert text that contained URLs to be clickable links. https://bugs.python.org/issue32548
# Bug report I'm trying to build python `3.11rc1` and faced with issue with correct importing `_tkinter` module due RPM build. Connected issues [90005](https://github.com/python/cpython/issues/90005) and pull request [31698](https://github.com/python/cpython/pull/31698). I've installed...
 There is mistake related to escape sequences in Python documentation page link: https://docs.python.org/3/reference/lexical_analysis.html#strings it shows "\newline" with meaning "Backslash and newline ignored" while using this has no effect in...
datetime.isoformat generates the tzoffset with colons, but there was no format code to make strftime output the same format. for simplicity and consistency the %:z formatting behaves mostly as %z,...
I built an in-place version of `numpy` with `python setup.py build_ext -i` (note that that will _not_ have a `.dist-info` dir at the root of the repo, `distutils` doesn't produce...
BPO | [46180](https://bugs.python.org/issue46180) --- | :--- Nosy | @ned-deily, @serhiy-storchaka, @PySimpleGUI, @Jason990420 Files | [Linux3.10.jpg](https://bugs.python.org/file50607/Linux3.10.jpg "Uploaded as image/jpeg at 2022-02-06.19:13:13 by @PySimpleGUI"): Screenshot of PySimpleGUI Test harness showing Python &...
(cherry picked from commit 3adb4d864bb18a51334c922a732e5e3602799ba1) Co-authored-by: Michael Droettboom * Issue: gh-94808
When using `text=True` and a timeout is hit from `subprocess.run(cmd, timeout=T, text=True, capture_output=True)` then the resulting `subprocess.TimeoutExpired` exception incorrectly stores `stdout` and `stderr` in bytes. The complexity is around the...