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

Typo in python code #3

Closed
jeroen-meijer opened this issue Aug 31, 2017 · 1 comment
Closed

Typo in python code #3

jeroen-meijer opened this issue Aug 31, 2017 · 1 comment
Assignees

Comments

@jeroen-meijer
Copy link

At one point in the README.md, you state:

>>> a = "some_string"
140420665652016
>>> id(a)
>>> id("some" + "_" + "string") # Notice that both the ids are same.
140420665652016
...

but I believe the correct order would be

>>> a = "some_string"
>>> id(a)
140420665652016
>>> id("some" + "_" + "string") # Notice that both the ids are same.
140420665652016
...
@satwikkansal satwikkansal self-assigned this Aug 31, 2017
@satwikkansal
Copy link
Owner

Ah, this is bad... fixing it right away!

BenSt099 added a commit to BenSt099/wtfpython that referenced this issue Apr 17, 2023
BenSt099 added a commit to BenSt099/wtfpython that referenced this issue Apr 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants