Re: [python-advocacy] A Pythonic Way to Measure and Improve Your Programming Skills?

2007-03-10 Thread Michael Bernstein
On Sat, 2007-03-10 at 10:01 -0600, Brad Allen wrote: When I discussed this problem with Michael Bernstein at PyCon he suggested the idea of creating a chroot jail for each web session which could run the Python interpreter in a secure sandbox. That might be easier than giving each session

Re: JOB: Telecommute Python Programmer - IMMEDIATE NEED

2005-12-12 Thread Michael Bernstein
Beau Gould is the owner and moderator of what was until very recently the 'pythonzopejobs' group on groups.yahoo.com. Two days ago, I got a PHP/MySQL job from a Yahoo Groups address I didn't recognize. Initially, I classified it as spam, and forgot about it. Today, I had reason to search the

Re: what would you like to see in a 2nd edition Nutshell?

2004-12-30 Thread Michael Bernstein
Aside from negative indices, I'd also suggest a small (and rather obvious) example for replacing a substring: s='spam' s=s[:1]+'xx'+s[3:] s 'sxxm' - Michael -- http://mail.python.org/mailman/listinfo/python-list