File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ are always available. They are listed here in alphabetical order.
113
113
114
114
.. index :: pair: Boolean; type
115
115
116
+ .. versionchanged :: 3.7
117
+ *x * is now a positional-only parameter.
116
118
117
119
.. function :: breakpoint(*args, **kws)
118
120
@@ -578,6 +580,9 @@ are always available. They are listed here in alphabetical order.
578
580
.. versionchanged :: 3.6
579
581
Grouping digits with underscores as in code literals is allowed.
580
582
583
+ .. versionchanged :: 3.7
584
+ *x * is now a positional-only parameter.
585
+
581
586
582
587
.. index ::
583
588
single: __format__
@@ -729,7 +734,7 @@ are always available. They are listed here in alphabetical order.
729
734
to provide elaborate line editing and history features.
730
735
731
736
732
- .. class :: int(x=0 )
737
+ .. class :: int([x] )
733
738
int(x, base=10)
734
739
735
740
Return an integer object constructed from a number or string *x *, or return
@@ -763,6 +768,9 @@ are always available. They are listed here in alphabetical order.
763
768
.. versionchanged :: 3.6
764
769
Grouping digits with underscores as in code literals is allowed.
765
770
771
+ .. versionchanged :: 3.7
772
+ *x * is now a positional-only parameter.
773
+
766
774
767
775
.. function :: isinstance(object, classinfo)
768
776
You can’t perform that action at this time.
0 commit comments