Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from lsst.utils import continueClass 

2 

3from .testLib import TypeWithProxy, TypeWithoutProxy 

4 

5 

6@continueClass # noqa F811 redefinition 

7class TypeWithProxy: 

8 def __reduce__(self): 

9 return (TypeWithProxy, ()) 

10 

11 

12@continueClass # noqa F811 redefinition 

13class TypeWithoutProxy: 

14 def __reduce__(self): 

15 return (TypeWithoutProxy, ())