On 04/17/2015 11:03 AM, Steven D'Aprano wrote:
On Fri, 17 Apr 2015 07:47 pm, Fetchinson . wrote:
>>>In an altercation with the police, complying with their orders greatly
>>>increases your chances of survival.
>>
>>Ah, the definition of a police state: where ordinary people, whether
>>breaki
On Fri, 17 Apr 2015 07:47 pm, Fetchinson . wrote:
>>> In an altercation with the police, complying with their orders greatly
>>> increases your chances of survival.
>>
>> Ah, the definition of a police state: where ordinary people, whether
>> breaking the law or not, are forced by fear of death to
On Fri, 17 Apr 2015 11:47:06 +0200, Fetchinson . wrote:
>>> In an altercation with the police, complying with their orders greatly
>>> increases your chances of survival.
>>
>> Ah, the definition of a police state: where ordinary people, whether
>> breaking the law or not, are forced by fear of de
>> In an altercation with the police, complying with their orders greatly
>> increases your chances of survival.
>
> Ah, the definition of a police state: where ordinary people, whether
> breaking the law or not, are forced by fear of death to obey the police at
> all times, whether the police are
Do you mean Pythonesque or Pythonic?--
https://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano writes:
> On Fri, 17 Apr 2015 07:15 am, Seymore4Head wrote:
>
>> I am guessing that a few here might find this program interesting.
>> http://video.pbs.org/video/2365464997/
>
> For the sake of those of us with limited access to the Internet at the
> moment (say, we're behind a co
Seymore4Head writes:
> I am guessing that a few here might find this program interesting.
Without any context to say what it's about or why it's relevant in this
forum, that message is effectively noise. Please take more care to
consider your audience.
--
\“You can't have everything;
On Fri, 17 Apr 2015 07:15 am, Seymore4Head wrote:
> I am guessing that a few here might find this program interesting.
> http://video.pbs.org/video/2365464997/
For the sake of those of us with limited access to the Internet at the
moment (say, we're behind a corporate firewall, or our browser has
joblack wrote:
Great - it works.
Thanks a lot.
Thread of the week :)
JM
--
http://mail.python.org/mailman/listinfo/python-list
Big Stu writes:
> I'm hoping someone on here can point me to an example of a python
> package that is a great example of how to put it all together. I'm
> hoping for example code that demonstrates [good adherence to style and
> practice conventions]
I find the code base for Bazaar to be particu
Josh Holland writes:
> On 2010-01-28, exar...@twistedmatrix.com wrote:
> > Have you actually looked at any of the standard library?
> Not recently or in depth, no. I would have thought that it would be of
> high quality. I must have been mistaken.
Style conventions were introduced relatively la
On 07:49 pm, stu.dohe...@gmail.com wrote:
Have you actually looked at any of the standard library?
Jean-Paul
I'm looking at urllib2 right now and it is covering a bunch of the
bases I'm looking for. And grepping in the /usr/lib/python2.5/ folder
for import statements on various things I'm i
> Have you actually looked at any of the standard library?
>
> Jean-Paul
I'm looking at urllib2 right now and it is covering a bunch of the
bases I'm looking for. And grepping in the /usr/lib/python2.5/ folder
for import statements on various things I'm interested in is bringing
up some good exa
On 2010-01-28, exar...@twistedmatrix.com wrote:
> Have you actually looked at any of the standard library?
Not recently or in depth, no. I would have thought that it would be of
high quality. I must have been mistaken.
--
Josh "dutchie" Holland
http://www.joshh.co.uk/
http://twitter.com/jshholl
On 28 ene, 19:17, Big Stu wrote:
> I'm hoping someone on here can point me to an example of a python
> package that is a great example of how to put it all together. I'm
> hoping for example code that demonstrates:
>
> -Strict adherence to PEP 8
> -thorough use of Docstrings
> -Conventional direc
On Jan 28, 2:28 pm, Josh Holland wrote:
> On 2010-01-28, Big Stu wrote:
>
> > I'm hoping someone on here can point me to an example of a python
> > package that is a great example of how to put it all together. I'm
> > hoping for example code that demonstrates:
>
> Surely most of the Standard Li
On 07:28 pm, j...@joshh.co.uk wrote:
On 2010-01-28, Big Stu wrote:
I'm hoping someone on here can point me to an example of a python
package that is a great example of how to put it all together. I'm
hoping for example code that demonstrates:
Surely most of the Standard Library should satisf
On 2010-01-28, Big Stu wrote:
> I'm hoping someone on here can point me to an example of a python
> package that is a great example of how to put it all together. I'm
> hoping for example code that demonstrates:
Surely most of the Standard Library should satisfy all your
requirements?
--
Josh
On 28 nov, 16:53, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> > I just want to make a jquery wrapper, and let people use it to write
> > jquery call on the server side in a python way ...
>
> > o is a object, imagine a widget : like a textarea or input box
> > "js" is a special attribut of "o",
On 28 nov, 17:12, Peter Otten <[EMAIL PROTECTED]> wrote:
> manatlan wrote:
> > To explain better, here is another code
> > class JQueryCaller(object):
> > def __init__(self,callback):
> > self.__callback=callback
> > self._s=[]
>
> > def __getattr__(self,name):
> > d
manatlan wrote:
> To explain better, here is another code
> class JQueryCaller(object):
> def __init__(self,callback):
> self.__callback=callback
> self._s=[]
>
> def __getattr__(self,name):
> def _caller(*args):
> sargs=["'%s'"%i for i in args]
>
Steven D'Aprano wrote:
> On Fri, 28 Nov 2008 02:36:28 -0800, manatlan wrote:
>
>> I'd like to make a "jquery python wrapper"
> [...]
>> here is my code :
> [...]
>
> What is the purpose of this code? As near as I can see, it would make an
> excellent entry to the Obfuscated Python Competition, e
>
> I just want to make a jquery wrapper, and let people use it to write
> jquery call on the server side in a python way ...
>
> o is a object, imagine a widget : like a textarea or input box
> "js" is a special attribut of "o", which will let you write javascript
> for this object.
>
> o=MyObj
On 28 nov, 15:49, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Nov 28, 9:19 am, manatlan <[EMAIL PROTECTED]> wrote:
>
>
>
> > On 28 nov, 14:58, George Sakkis <[EMAIL PROTECTED]> wrote:
>
> > > On Nov 28, 5:36 am, manatlan <[EMAIL PROTECTED]> wrote:
>
> > > > I'd like to make a "jquery python wrapp
On Fri, 28 Nov 2008 02:36:28 -0800, manatlan wrote:
> I'd like to make a "jquery python wrapper"
[...]
> here is my code :
[...]
What is the purpose of this code? As near as I can see, it would make an
excellent entry to the Obfuscated Python Competition, except it isn't
clear that it does any
On Nov 28, 9:19 am, manatlan <[EMAIL PROTECTED]> wrote:
> On 28 nov, 14:58, George Sakkis <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Nov 28, 5:36 am, manatlan <[EMAIL PROTECTED]> wrote:
>
> > > I'd like to make a "jquery python wrapper" ...
>
> > > here is my code :
> > >
On 28 nov, 15:19, manatlan <[EMAIL PROTECTED]> wrote:
> On 28 nov, 14:58, George Sakkis <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Nov 28, 5:36 am, manatlan <[EMAIL PROTECTED]> wrote:
>
> > > I'd like to make a "jquery python wrapper" ...
>
> > > here is my code :
> > > ===
On 28 nov, 14:58, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Nov 28, 5:36 am, manatlan <[EMAIL PROTECTED]> wrote:
>
>
>
> > I'd like to make a "jquery python wrapper" ...
>
> > here is my code :
> > ===
> > #!/usr/bin/env python
> >
On Nov 28, 5:36 am, manatlan <[EMAIL PROTECTED]> wrote:
> I'd like to make a "jquery python wrapper" ...
>
> here is my code :
> ===
> #!/usr/bin/env python
> # -*- coding: utf-8 -*-
>
> class JQueryCaller(object):
> def __init__(s
On Sat, 12 Jan 2008 01:03:42 -0600, Landon <[EMAIL PROTECTED]> wrote:
> Hi, I'm a freshman in college and I'm going to be taking an intro to
> programming course next semester which mainly uses Python, so I
> thought it might be a good time to pick up Python beyond the scope of
> the class as well.
On Sat, 12 Jan 2008 13:12:19 -0800 (PST), [EMAIL PROTECTED] <[EMAIL PROTECTED]>
wrote:
> On 12 jan, 21:04, Landon <[EMAIL PROTECTED]> wrote:
>> One thing I wonder about is the examples these books use to teach the
>> concepts. I found myself really attached to K&R because the end of
>> section pro
In article <[EMAIL PROTECTED]>,
GeneralCody <[EMAIL PROTECTED]> wrote:
> On 2008-01-12 08:03:42 +0100, Landon <[EMAIL PROTECTED]> said:
>
> > Hi, I'm a freshman in college and I'm going to be taking an intro to
> > programming course next semester which mainly uses Python, so I
> > thought it mi
On Jan 12, 9:03 am, Landon <[EMAIL PROTECTED]> wrote:
> Hi, I'm a freshman in college and I'm going to be taking an intro to
> programming course next semester which mainly uses Python, so I
> thought it might be a good time to pick up Python beyond the scope of
> the class as well. The text book f
At 11:03 PM 1/11/2008, Landon wrote:
>Hi, I'm a freshman in college and I'm going to be taking an intro to
>programming course next semester which mainly uses Python, so I
>thought it might be a good time to pick up Python beyond the scope of
>the class as well. The text book for this class is Pyth
On 12 jan, 21:04, Landon <[EMAIL PROTECTED]> wrote:
> One thing I wonder about is the examples these books use to teach the
> concepts. I found myself really attached to K&R because the end of
> section projects were utilities that I would find be able to find
> useful in day to day work such as a
On Jan 12, 4:04 pm, Landon <[EMAIL PROTECTED]> wrote:
> One thing I wonder about is the examples these books use to teach the
> concepts. I found myself really attached to K&R because the end of
> section projects were utilities that I would find be able to find
> useful in day to day work such as
One thing I wonder about is the examples these books use to teach the
concepts. I found myself really attached to K&R because the end of
section projects were utilities that I would find be able to find
useful in day to day work such as a version of wc and a program that
would take collapse all con
On 2008-01-12 08:03:42 +0100, Landon <[EMAIL PROTECTED]> said:
> Hi, I'm a freshman in college and I'm going to be taking an intro to
> programming course next semester which mainly uses Python, so I
> thought it might be a good time to pick up Python beyond the scope of
> the class as well. The t
On Jan 12, 2:03 am, Landon <[EMAIL PROTECTED]> wrote:
> I was wondering if anyone had any opinions on what other titles I
> could look into since this one seems from a glance at reviews to be
> teaching mainly through game programming (a topic I'm not too
> interested in) or if this one is a quali
On Jan 12, 7:47 am, Ben Finney <[EMAIL PROTECTED]>
wrote:
> Landon <[EMAIL PROTECTED]> writes:
> > I was wondering if anyone had any opinions on what other titles I
> > could look into since this one seems from a glance at reviews to be
> > teaching mainly through game programming (a topic I'm not
On Jan 12, 2:03 am, Landon <[EMAIL PROTECTED]> wrote:
> Hi, I'm a freshman in college and I'm going to be taking an intro to
> programming course next semester which mainly uses Python, so I
> thought it might be a good time to pick up Python beyond the scope of
> the class as well. The text book f
Landon <[EMAIL PROTECTED]> writes:
> I was wondering if anyone had any opinions on what other titles I
> could look into since this one seems from a glance at reviews to be
> teaching mainly through game programming (a topic I'm not too
> interested in) or if this one is a quality book by itself.
Look at
http://www.python.org/doc/
. The tutorial is quite good.
Jim
--
http://mail.python.org/mailman/listinfo/python-list
Tolga wrote:
>
> I am not unfamiliar to programming but a newbie in Python. Could you
> recommend me (a) great book(s) to start with? Free online books or
> solid books are welcome.
>
> Thanx in advance.
Some days ago there was an similar subject 'Learning Python', wish give you
some usefull in
On Sun, 11 Dec 2005 06:15:17 -0800, Tolga wrote:
>
> I am not unfamiliar to programming but a newbie in Python. Could you
> recommend me (a) great book(s) to start with? Free online books or
> solid books are welcome.
>
> Thanx in advance.
O'Reilly's Learning Python Second Edition covers up to
Tolga wrote:
> I am not unfamiliar to programming but a newbie in Python. Could you
> recommend me (a) great book(s) to start with? Free online books or
> solid books are welcome.
>
http://www.ibiblio.org/g2swap/byteofpython/read/index.html
http://www.ibiblio.org/obp/thinkCSpy/
http://www.freene
http://www.awaretek.com/tutorials.html#regular
--
http://mail.python.org/mailman/listinfo/python-list
Tolga wrote:
> I am not unfamiliar to programming but a newbie in Python. Could you
> recommend me (a) great book(s) to start with? Free online books or
> solid books are welcome.
>
> Thanx in advance.
>
I'd call Dive Into Python a reference, it's an extremely clear yet
pythonic book, and it's a
No.
--
http://mail.python.org/mailman/listinfo/python-list
49 matches
Mail list logo