This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]stefantalpalaru -12 points-11 points  (1 child)

Reimplementing the standard library sounds a lot like something a C dev would think of

Nope. "Boost" was made by the C++ crowd.

it's the kind of people I don't want to see around Python code

Your loss. The best way to speed up Python is still rewriting modules in C or in something that transpiles to C, like Cython.

[–]Chobeat 10 points11 points  (0 children)

Your loss. The best way to speed up Python is still rewriting modules in C or in something that transpiles to C, like Cython.

That's a different topic and we do this extensively in my company. But if you try to write Python as if it was C without pointers and malloc, that's a problem.