Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
c5c127ed
Commit
c5c127ed
authored
Nov 19, 2014
by
Yuri Prezument
Browse files
Fix CursorIterator.next() for Python 3
It was calling next, but returning None
parent
2c2cc03b
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/cursor.py
View file @
c5c127ed
...
...
@@ -46,7 +46,7 @@ class BaseIterator(object):
self
.
limit
=
0
def
__next__
(
self
):
self
.
next
()
return
self
.
next
()
def
next
(
self
):
raise
NotImplementedError
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment