Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UserString subtypes parameterless __init__ #131857

Open
Lordfirespeed opened this issue Mar 28, 2025 · 2 comments
Open

UserString subtypes parameterless __init__ #131857

Lordfirespeed opened this issue Mar 28, 2025 · 2 comments
Labels
stdlib Python modules in the Lib dir type-feature A feature request or enhancement

Comments

@Lordfirespeed
Copy link

Lordfirespeed commented Mar 28, 2025

Description

Subtypes of UserString cannot be initialized without a seq argument as the builtin str can.

Reproduction

from collections import UserString

class MyString(UserString):
    pass
>>> str()
''
>>> MyString()
Traceback (most recent call last):
  File "<python-input-2>", line 1, in <module>
    MyString()
    ~~~~~~~~^^
TypeError: UserString.__init__() missing 1 required positional argument: 'seq'

Workaround

from collections import UserString

class MyString(UserString):
    def __init__(self, seq: object = str()) -> None:
        super().__init__(seq)

CPython versions tested on:

3.13

Operating systems tested on:

Linux

@Lordfirespeed Lordfirespeed added the type-bug An unexpected behavior, bug, or error label Mar 28, 2025
@brianschubert
Copy link
Contributor

This is consistent with the docs, which indicate that the seq parameter is required (note the lack of surrounding brackets). So, not exactly a bug, but probably a reasonable feature request.

@picnixz
Copy link
Member

picnixz commented Mar 28, 2025

cc @rhettinger: what was the rationale of having a required seq? was it an oversight or was it because an empty user-defined string should rather be instantiated using '' instead (namely, there is no real use-case for an empty UserString)

@picnixz picnixz added stdlib Python modules in the Lib dir type-feature A feature request or enhancement and removed type-bug An unexpected behavior, bug, or error labels Mar 28, 2025
@picnixz picnixz changed the title UserString subtypes parameterless `__init__ UserString subtypes parameterless __init__ Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stdlib Python modules in the Lib dir type-feature A feature request or enhancement
Projects
None yet
Development

No branches or pull requests

3 participants