File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
stdlib/@tests/stubtest_allowlists Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -548,11 +548,8 @@ types.ModuleType.__dict__ # read-only but not actually a property; stubtest thi
548
548
types.ModuleType.__getattr__ # this doesn't exist at runtime
549
549
unittest.runner._WritelnDecorator.flush # Methods that come from __getattr__() at runtime
550
550
unittest.runner._WritelnDecorator.write # Methods that come from __getattr__() at runtime
551
-
552
- # See comments in file. List out methods that are delegated by __getattr__ at runtime.
553
- # Used to make the relevant class satisfy BinaryIO interface.
554
- urllib.response.addbase.\w+
555
-
551
+ urllib.response.addbase.write # Methods that come from __getattr__() at runtime
552
+ urllib.response.addbase.writelines # Methods that come from __getattr__() at runtime
556
553
urllib.request.HTTPPasswordMgrWithPriorAuth.__init__ # Args are passed as is to super, so super args are specified
557
554
uuid.bytes_ # Attributes that are intended to be private
558
555
uuid.int_ # Attributes that are intended to be private
You can’t perform that action at this time.
0 commit comments