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 f791297 commit b9f4333Copy full SHA for b9f4333
vpython/test/test_namespace.py
@@ -177,6 +177,11 @@ def test_names_in_base_namspace():
177
for name in ['cbrt', 'exp2']:
178
api_name_set.add(name)
179
180
+ # Python 3.12 adds one more new math function.
181
+ if python_version.major == 3 and python_version.minor >= 12:
182
+ for name in ['sumprod']:
183
+ api_name_set.add(name)
184
+
185
print(sorted(api_name_set - current_names))
186
187
# We may have added new names, so start with this weaker test
0 commit comments