You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 31, 2020. It is now read-only.
>>> print(type(tuple))
function (args, kwargs) {
if (args.length === 0) {
return new types.Tuple();
}
return new types.Tuple(args[0]);
}
>>> print(type(tuple) is type)
False
Expected Behavior
type(tuple)
returns an incorrect valueCurrent Behavior
When I try this on master, this returns the javascript function with the
Tuple
constructor. I expect this to return thetype
object.Steps to reproduce
For reference, this is what cpython does:
while batavia does the following
Your Environment
Testing on master, revision 71388f5
Python Version 3.6.8
Operating System and Version: Ubuntu 18.04
The text was updated successfully, but these errors were encountered: