File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -701,14 +701,18 @@ Deprecated
701
701
Python 3.14, when ``'data' `` filter will become the default.
702
702
See :ref: `tarfile-extraction-filter ` for details.
703
703
704
+ <<<<<<< HEAD
704
705
* ``calendar.January `` and ``calendar.February `` constants are deprecated and
705
706
replaced by :data: `calendar.Month.JANUARY ` and :data: `calendar.Month.FEBRUARY `.
706
707
(Contributed by Prince Roshan in :gh: `103636 `.)
707
708
708
709
* The bitwise inversion operator (~) on bool is deprecated. It will throw an
710
+ =======
711
+ * The bitwise inversion operator (``~ ``) on bool is deprecated. It will throw an
712
+ >>>>>>> d169b579a8 (Update Doc/whatsnew/3.12.rst)
709
713
error in Python 3.14. Use ``not `` for logical negation of bools instead.
710
714
In the rare case that you really need the bitwise inversion of the underlying
711
- ``int ``, convert to int explicitly ``~int(x) ``. (Contributed by Tim Hoffmann
715
+ ``int ``, convert to int explicitly with ``~int(x) ``. (Contributed by Tim Hoffmann
712
716
in :gh: `103487 `.)
713
717
714
718
Pending Removal in Python 3.13
You can’t perform that action at this time.
0 commit comments