-
-
Notifications
You must be signed in to change notification settings - Fork 34.4k
Python3.15.0a1 REPL : issue with pasting of Tab indented multiline code #140502
Copy link
Copy link
Open
Labels
3.14bugs and security fixesbugs and security fixes3.15new features, bugs and security fixesnew features, bugs and security fixesstdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytopic-replRelated to the interactive shellRelated to the interactive shelltype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
Misaligned output of pasted Tab-indented multiline code into the REPL:
~ $ python3.13
Python 3.13.8 (main, Oct 15 2025, 02:41:02) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from PyQt6.QtWidgets import QApplication, QWidget
... from PyQt6.QtGui import QPainter, QColor, QPen
... from PyQt6.QtCore import Qt, QRect
... from cv2 import (
... cvtColor,
... COLOR_Lab2RGB,
... COLOR_HSV2RGB_FULL,
... COLOR_HLS2RGB_FULL,
...
... COLOR_RGB2Lab,
... COLOR_RGB2HSV_FULL,
... COLOR_RGB2HLS_FULL,
...
... )
...
>>> exit
~ $ python3.15
Python 3.15.0a1 (main, Oct 17 2025, 14:09:27) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from PyQt6.QtWidgets import QApplication, QWidget
... from PyQt6.QtGui import QPainter, QColor, QPen
... from PyQt6.QtCore import Qt, QRect
... from cv2 import (
... cvtColor ,
... COLOR_Lab2RGB ,
... COLOR_HSV2RGB_FULL ,
... COLOR_HLS2RGB_FULL ,
...
... COLOR_RGB2Lab ,
... COLOR_RGB2HSV_FULL ,
... COLOR_RGB2HLS_FU... ) ,
...
>>> exit
~ $ CPython versions tested on:
3.15
Operating systems tested on:
Linux
Linked PRs
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
3.14bugs and security fixesbugs and security fixes3.15new features, bugs and security fixesnew features, bugs and security fixesstdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytopic-replRelated to the interactive shellRelated to the interactive shelltype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error