We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3a5e8 commit 2e7802fCopy full SHA for 2e7802f
1 file changed
stdlib/ctypes/__init__.pyi
@@ -170,12 +170,8 @@ if sys.version_info < (3, 15):
170
@deprecated("Deprecated since Python 3.13; will be removed in Python 3.15.")
171
def SetPointerType(pointer: type[_Pointer[Any]], cls: _CTypeBaseType) -> None: ...
172
173
-if sys.version_info >= (3, 13):
174
- @deprecated("Soft deprecated since Python 3.13. Use multiplication instead.")
175
- def ARRAY(typ: _CT, len: int) -> Array[_CT]: ...
176
-
177
-else:
178
+@deprecated("Soft deprecated since Python 3.13. Use multiplication instead.")
+def ARRAY(typ: _CT, len: int) -> Array[_CT]: ...
179
180
if sys.platform == "win32":
181
def DllCanUnloadNow() -> int: ...
0 commit comments