ReferenceError is now built-in, so pick it up from the right place.
It still needs to be here to preserve the API.
diff --git a/Lib/weakref.py b/Lib/weakref.py
index 0cf6bf9..39ec330 100644
--- a/Lib/weakref.py
+++ b/Lib/weakref.py
@@ -16,11 +16,13 @@
      getweakrefs, \
      ref, \
      proxy, \
-     ReferenceError, \
      CallableProxyType, \
      ProxyType, \
      ReferenceType
 
+from exceptions import ReferenceError
+
+
 ProxyTypes = (ProxyType, CallableProxyType)
 
 __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",