Devin Jeanpierre

3,057
reputation
373 views

Registered User

name Devin Jeanpierre
member for 1 year
seen 5 hours ago
website
location Toronto, ON, Canada
age 19
I am, of course, a programmer, and my language of choice is Python. I intend to next learn Haskell.
I am currently a student at the University of Toronto, at the St. George campus. I am studying Computer Science and Mathematics. If I don't update this information, I should be taking a year off for a paid internship in either 2010 or 2011, and should graduate in 2012 or 1013.
Outside of software, I enjoy Judo, very much. I am, as of 2009, a green belt.
1h
accepted min heap in python
Dec
6
awarded  Mortarboard
Oct
17
comment Python: Why can’t I modify the current scope within a function using locals()?
This is a fair complaint. For what it's worth, it works this way because Python speeds up local access in a way that makes this impossible, whereas the global namespace makes no such optimization (though that has been suggested, e.g. PEP 266). It is arguably a leaky abstraction that should go away. My personal preference would be to make globals() work the way locals() does now, rather than make locals() work like globals() does now. Regardless, my answer was more of a sneaky reference to the docs than a reference to intuition. It wouldn't do it because the docs don't say it should.
Sep
20
awarded  Yearling
Aug
30
comment Remove elements as you traverse a list in Python
well, colors[:] = ... is only better if there are other references to worry about (for some reason, this rarely turns out to be the case for me). Still, the list comprehension is definitely the way to go.
Aug
30
comment Remove elements as you traverse a list in Python
The solution could be made to work, via: while 'green' in colors: colors.remove('green') . Of course, this is O(n**2), while the better solutions are O(n).
Aug
30
comment Remove elements as you traverse a list in Python
The only reason to call it more idiomatic is because the stdlib copy module documentation references it. Despite that, I would still use list(otherlist) for copies (or possibly copy.copy(otherthing))
Aug
30
comment Re-raising exceptions with a different type and message, preserving existing information
I didn't store anything, I left traceback as a local variable that presumably falls out of scope. Yes, it is conceivable that it doesn't, but if you raise exceptions like that in the global scope rather than within functions, you've got bigger issues. If your complaint is only that it could be executed in a global scope, the proper solution is not to add irrelevant boilerplate that has to be explained and isn't relevant for 99% of uses, but to rewrite the solution so that no such thing is necessary while making it seem as if nothing is different-- as I have now done.
Aug
30
revised Re-raising exceptions with a different type and message, preserving existing information
fix'd with regards to storing the current stack frame
Aug
18
answered Python lazy attributes that don’t eval on hasattr()
Aug
18
answered What programming languages are context-free?