File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,13 @@ Deprecated
184
184
Replace ``ctypes.ARRAY(item_type, size) `` with ``item_type * size ``.
185
185
(Contributed by Victor Stinner in :gh: `105733 `.)
186
186
187
+ * The :mod: `getopt ` and :mod: `optparse ` modules are now
188
+ :term: `soft deprecated `: the :mod: `argparse ` should be used for new projects.
189
+ Previously, the :mod: `optparse ` module was already deprecated, its removal
190
+ was not scheduled, and no warnings was emitted: so there is no change in
191
+ practice.
192
+ (Contributed by Victor Stinner in :gh: `106535 `.)
193
+
187
194
Pending Removal in Python 3.14
188
195
------------------------------
189
196
@@ -946,6 +953,11 @@ Removed
946
953
:c:func: `PyInterpreterState_Get() ` on Python 3.8 and older.
947
954
(Contributed by Victor Stinner in :gh: `106320 `.)
948
955
956
+ * The :c:func: `PyModule_AddObject ` function is now :term: `soft deprecated `:
957
+ :c:func: `PyModule_Add ` or :c:func: `PyModule_AddObjectRef ` functions should
958
+ be used instead.
959
+ (Contributed by Serhiy Storchaka in :gh: `86493 `.)
960
+
949
961
Pending Removal in Python 3.14
950
962
------------------------------
951
963
You can’t perform that action at this time.
0 commit comments