Skip to content

Commit 23d1447

Browse files
authored
Correct co_lnotab deprecation message (#14145)
1 parent 4ea1f95 commit 23d1447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/types.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class CodeType:
151151
def co_firstlineno(self) -> int: ...
152152
if sys.version_info >= (3, 10):
153153
@property
154-
@deprecated("Will be removed in Python 3.14. Use the co_lines() method instead.")
154+
@deprecated("Will be removed in Python 3.15. Use the co_lines() method instead.")
155155
def co_lnotab(self) -> bytes: ...
156156
else:
157157
@property

0 commit comments

Comments
 (0)