File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ What's New in astroid 3.3.2?
13
13
============================
14
14
Release date: TBA
15
15
16
+ * Restore support for soft-deprecated members of the ``typing`` module with python 3.13.
17
+
18
+ Refs pylint-dev/pylint#9852
16
19
17
20
18
21
What's New in astroid 3.3.1?
Original file line number Diff line number Diff line change @@ -451,6 +451,18 @@ class TypeVar:
451
451
@classmethod
452
452
def __class_getitem__(cls, item): return cls
453
453
class TypeVarTuple: ...
454
+ class ContextManager:
455
+ @classmethod
456
+ def __class_getitem__(cls, item): return cls
457
+ class AsyncContextManager:
458
+ @classmethod
459
+ def __class_getitem__(cls, item): return cls
460
+ class Pattern:
461
+ @classmethod
462
+ def __class_getitem__(cls, item): return cls
463
+ class Match:
464
+ @classmethod
465
+ def __class_getitem__(cls, item): return cls
454
466
"""
455
467
)
456
468
)
You can’t perform that action at this time.
0 commit comments