- new on default parameters
- One of the gotchas in python is that default parameters are reused, so if you say:
def spam(eggs = []):
then eggs will get set to the same list every time, and modifications will get carried over between calls. This can be hacked like this:def spam(eggs = None): if eggs is None: eggs = []
This works, but is ugly, and prevents passing in None as a value for eggs. It would be better to be able to simply say:def spam(eggs = new []):
which should do exactly what you expect. - ^ on bytes
- A strange oversight in Python3 is that bitwise operators don't work on byte arrays. The ^, & and | operators should work on bytes of equal length, doing exactly what they obviously should. Trying to apply them to bytes of unequal length should probably result in an error. It's easy enough to write functions to do these things, but they're slow, and there's only one reasonable semantics for what those operators should do on byte arrays anyway.
- raw binary conversion
- Maybe this has been added to the standard library and I just haven't heard about it, but a longstanding annoying missing piece of functionality is simple conversion between ints and big or little endian representations of them as bytes. Again, this is easy enough to implement, but is slow when done in Python and is hardly an obscure piece of functionality.
- dictionary scrambling
- This might be an obscure piece of functionality, but I'd like the ability to change the hashing function which dictionaries use, because I write tests which depend on my code behaving the same way every time it's run, and I'd like to be able to test that it doesn't have any dependencies on the order of iterating over dictionary keys or values.
Python wish list
-
Moving
I've moved my blog over to bramcohen.com. See you all there!
-
Practical Cryptography Corrected
The book 'Practical Cryptography' is perfectly good for giving an overview of basic concepts in cryptography, but its immediate practical advice to…
-
Git Can't Be Made Consistent
This post complains about Git lacking eventual consistency. I have a little secret for you: Git can't be made to have eventual consistency.…
- Post a new comment
- 23 comments
- Post a new comment
- 23 comments
-
Moving
I've moved my blog over to bramcohen.com. See you all there!
-
Practical Cryptography Corrected
The book 'Practical Cryptography' is perfectly good for giving an overview of basic concepts in cryptography, but its immediate practical advice to…
-
Git Can't Be Made Consistent
This post complains about Git lacking eventual consistency. I have a little secret for you: Git can't be made to have eventual consistency.…