Skip to content

Commit 8128d18

Browse files
committed
[GR-65785] Remove __dict__ from typing.Generic
PullRequest: graalpython/3837
2 parents 61dea6f + 6e8f845 commit 8128d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/PythonBuiltinClassType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1428,7 +1428,7 @@ def add_two(x: float, y: float) -> float:
14281428
14291429
See PEP 695 for more information.
14301430
""")),
1431-
PGeneric(J_GENERIC, PythonObject, newBuilder().publishInModule(J__TYPING).moduleName(J_TYPING).basetype().addDict());
1431+
PGeneric(J_GENERIC, PythonObject, newBuilder().publishInModule(J__TYPING).moduleName(J_TYPING).basetype());
14321432

14331433
private static TypeBuilder newBuilder() {
14341434
return new TypeBuilder();

0 commit comments

Comments
 (0)