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 bb22513 commit 23a35d9Copy full SHA for 23a35d9
graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_misc.py
@@ -1,4 +1,4 @@
1
-# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
2
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3
#
4
# The Universal Permissive License (UPL), Version 1.0
@@ -194,6 +194,7 @@ def compile_module(self, name):
194
lambda: (
195
(True, lambda arg0, *args: arg0),
196
(False, lambda arg0, *args: arg0),
197
+ (1000, lambda arg0, *args: arg0),
198
(10, lambda arg0, *args: arg0),
199
(10.0, lambda arg0, *args: arg0),
200
(float('nan'), lambda arg0, *args: arg0),
0 commit comments