summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/typing/mypy_plugin.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/numpy/typing/mypy_plugin.py b/numpy/typing/mypy_plugin.py
index 02bd18887..30c826d50 100644
--- a/numpy/typing/mypy_plugin.py
+++ b/numpy/typing/mypy_plugin.py
@@ -12,9 +12,10 @@ Its functionality can be split into three distinct parts:
likes of `~numpy.float128` and `~numpy.complex256`. Without the plugin *all*
extended-precision types will, as far as mypy is concerned, be available
to all platforms.
-* .. versionadded:: 1.22
- Assigning the (platform-dependent) precision of `~numpy.ctypeslib.c_intp`.
- Without the plugin aforementioned type will default to `ctypes.c_int64`.
+* Assigning the (platform-dependent) precision of `~numpy.ctypeslib.c_intp`.
+ Without the plugin aforementioned type will default to `ctypes.c_int64`.
+
+ .. versionadded:: 1.22
Examples
--------