selectors.py
changeset 4081 64548076add4
parent 4071 e19e586cc74e
child 4102 5ba6df5fcb07
--- a/selectors.py	Wed Dec 09 15:18:57 2009 +0100
+++ b/selectors.py	Wed Dec 09 15:19:14 2009 +0100
@@ -938,7 +938,7 @@
 
 entity_implements = class_renamed('entity_implements', implements)
 
-class but_etype(EntitySelector):
+class _but_etype(EntitySelector):
     """accept if the given entity types are not found in the result set.
 
     See `EntitySelector` documentation for behaviour when row is not specified.
@@ -954,6 +954,4 @@
             return 0
         return 1
 
-but_etype = class_renamed('but_etype', but_etype, 'use ~implements(*etypes) instead')
-
-
+but_etype = class_renamed('but_etype', _but_etype, 'use ~implements(*etypes) instead')