@@ -1246,6 +1246,9 @@ sys
12461246* On FreeBSD, :data: `sys.platform ` doesn't contain the major version anymore.
12471247 It is always ``'freebsd' ``, instead of ``'freebsd13' `` or ``'freebsd14' ``.
12481248
1249+ * Raise :exc: `DeprecationWarning ` for :func: `sys._clear_type_cache `. This
1250+ function was deprecated in Python 3.13 but it didn't raise a runtime warning.
1251+
12491252
12501253sys.monitoring
12511254--------------
@@ -1421,6 +1424,17 @@ uuid
14211424 (Contributed by Simon Legner in :gh: `131236 `.)
14221425
14231426
1427+ webbrowser
1428+ ----------
1429+
1430+ * Names in the :envvar: `BROWSER ` environment variable can now refer to already
1431+ registered browsers for the :mod: `webbrowser ` module, instead of always
1432+ generating a new browser command.
1433+
1434+ This makes it possible to set :envvar: `BROWSER ` to the value of one of the
1435+ supported browsers on macOS.
1436+
1437+
14241438zipinfo
14251439-------
14261440
@@ -2059,6 +2073,11 @@ New features
20592073 Adding ``? `` after any format unit makes ``None `` be accepted as a value.
20602074 (Contributed by Serhiy Storchaka in :gh: `112068 `.)
20612075
2076+ * The ``k `` and ``K `` formats in :c:func: `PyArg_ParseTuple ` and
2077+ similar functions now use :meth: `~object.__index__ ` if available,
2078+ like all other integer formats.
2079+ (Contributed by Serhiy Storchaka in :gh: `112068 `.)
2080+
20622081* Add macros :c:func: `Py_PACK_VERSION ` and :c:func: `Py_PACK_FULL_VERSION ` for
20632082 bit-packing Python version numbers.
20642083 (Contributed by Petr Viktorin in :gh: `128629 `.)
0 commit comments