We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74993e4 commit 0467557Copy full SHA for 0467557
pyrestorm/__init__.py
@@ -1 +1 @@
1
-__version__ = '0.1.2'
+__version__ = '0.1.3'
pyrestorm/query.py
@@ -194,5 +194,12 @@ def filter(self, **kwargs):
194
195
return clone
196
197
+ def none(self, *args, **kwargs):
198
+ '''Imitate an empty `RestQueryset` with no results
199
+ '''
200
+ return iter([])
201
+
202
def all(self, *args, **kwargs):
203
+ '''Unmodified query to return all results in the `RestQueryset`
204
205
return self._clone()
0 commit comments