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 26b8c6f commit 2630d18Copy full SHA for 2630d18
1 file changed
Doc/howto/clinic.rst
@@ -878,6 +878,12 @@ converter::
878
Write a pickled representation of obj to the open file.
879
[clinic start generated code]*/
880
881
+One advantage of real converters is that they're more flexible than legacy
882
+converters. For example, the ``unsigned_int`` converter (and all the
883
+``unsigned_`` converters) can be specified without ``bitwise=True``. Their
884
+default behavior performs range checking on the value, and they won't accept
885
+negative numbers. You just can't do that with a legacy converter!
886
+
887
Argument Clinic will show you all the converters it has
888
available. For each converter it'll show you all the parameters
889
it accepts, along with the default value for each parameter.
0 commit comments