Skip to content

Commit 9a48dc1

Browse files
committed
fix _weakref __getattribute__ builtin
1 parent bcb0a60 commit 9a48dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/lib-graalpython/_weakref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(self, other):
5353
import weakref
5454
object.__setattr__(self, "_weakref", weakref.ref(other))
5555

56-
def __getattr__(self, key):
56+
def __getattribute__(self, key):
5757
return getattr(_proxy_get(self), key)
5858

5959
def __setattr__(self, key, value):

0 commit comments

Comments
 (0)