Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1073125
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:56:59+00:00 2026-05-16T20:56:59+00:00

According to the documentation on ABCs , I should just have to add a

  • 0

According to the documentation on ABCs, I should just have to add a next method to be able to subclass collections.Iterator. So, I’m using the following class:

class DummyClass(collections.Iterator):
    def next(self):
        return 1

However, I get an error when I try to instantiate it:

>>> x = DummyClass()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: Can't instantiate abstract class DummyClass with abstract methods __next__

I’m guessing that I’m doing something stupid, but I can’t figure out what it is. Can anyone shed some light on this? I could add a __next__ method, but I was under the impression that was only for C classes.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:56:59+00:00Added an answer on May 16, 2026 at 8:56 pm

    Looks like you are using Python 3.x. Your code works fine on Python 2.x.

    >>> import collections
    >>> class DummyClass(collections.Iterator):
    ...     def next(self):
    ...         return 1
    ... 
    >>> x = DummyClass()
    >>> zip(x, [1,2,3,4])
    [(1, 1), (1, 2), (1, 3), (1, 4)]
    

    But on Python 3.x, you should implement __next__ instead of next, as shown in the table of the py3k doc. (Remember to read the correct version!)

    >>> import collections
    >>> class DummyClass(collections.Iterator):
    ...     def next(self):
    ...         return 1
    ... 
    >>> x = DummyClass()
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: Can’t instantiate abstract class DummyClass with abstract methods __next__
    >>> class DummyClass3k(collections.Iterator):
    ...     def __next__(self):
    ...         return 2
    ... 
    >>> y = DummyClass3k()
    >>> list(zip(y, [1,2,3,4]))
    [(2, 1), (2, 2), (2, 3), (2, 4)]
    

    This change is introduced by PEP-3114 — Renaming iterator.next() to iterator.__next__().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

According to the documentation, the decimal.Round method uses a round-to-even algorithm which is not
According to documentation Default implementation does nothing. But... I throw exception from drawRect method
According to the documentation for NSString's method -UTF8String : The returned C string is
According documentation: System.Array.Sort<T> - sorts the elements in an entire System.Array using the System.IComparable
According to documentation, I try to subclass NSTextStorage and use it in text view:
There's setDoOutput() in URLConnection . According to documentation I should Set the DoOutput flag
According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to
According to the documentation, a prepared query provides a significant performance benefit if you're
According to the documentation of the == operator in MSDN , For predefined value
According to the documentation in VB6 the Mid() function returns a variant, but Mid$()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.