tonybaloney / cpython-book-samples

Sample scripts and examples for my CPython Internals book
Creative Commons Zero v1.0 Universal
235 stars 70 forks source link

test_tokens is missing #5

Closed marty331 closed 3 years ago

marty331 commented 3 years ago

I purchased the paperback and it references a file called test_tokens.py, however I don't see it in this repo. Could you please add it?

marty331 commented 3 years ago

Found it, sorry for the confusion.

jugmac00 commented 3 years ago

Hi @marty331,

if you are on Linux or Mac, you can always use find to search for a file, e.g.

❯ find -name test_tokens.py
./13/test_tokens.py

Or just use the operating system's file explorer.

Btw, back then, when the PDF version was released, I tried and tested every single code example, so all of them should work!

Have fun with this great book!

marty331 commented 3 years ago

Thanks @jugmac00 I started the book working on my M1 MacBook Pro but quickly switched to a Linux machine that I have in a closet. The book is great, I'm learning a lot and really glad I purchased it.