Thanks to visit codestin.com Credit goes to github.com
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 bf02fd4 commit d169b57Copy full SHA for d169b57
1 file changed
Doc/whatsnew/3.12.rst
@@ -692,10 +692,10 @@ Deprecated
692
Python 3.14, when ``'data'`` filter will become the default.
693
See :ref:`tarfile-extraction-filter` for details.
694
695
-* The bitwise inversion operator (~) on bool is deprecated. It will throw an
+* The bitwise inversion operator (``~``) on bool is deprecated. It will throw an
696
error in Python 3.14. Use ``not`` for logical negation of bools instead.
697
In the rare case that you really need the bitwise inversion of the underlying
698
- ``int``, convert to int explicitly ``~int(x)``. (Contributed by Tim Hoffmann
+ ``int``, convert to int explicitly with ``~int(x)``. (Contributed by Tim Hoffmann
699
in :gh:`103487`.)
700
701
Pending Removal in Python 3.13
0 commit comments