Re: How to find in in the documentation

2009-03-14 Thread Tim Golden
Colin J. Williams wrote: Piet van Oostrum wrote: tinn...@isbd.co.uk (t) wrote: t I've had this trouble before, how do I find the details of how in t works in the documentation. E.g. the details of:- t if string in bigstring: t It gets a mention in the if section but not a lot.

Re: How to find in in the documentation

2009-03-14 Thread jkn
On Mar 14, 7:00 am, Tim Golden m...@timgolden.me.uk wrote: Well, this may not solve the OP's problem, but the current (2.7a0) .chm file has a much better index for operators and keywords. And in is in there. If you're interested in comparing, there's a copy here:

Re: How to find in in the documentation

2009-03-14 Thread tinnews
Colin J. Williams c...@ncf.ca wrote: Piet van Oostrum wrote: tinn...@isbd.co.uk (t) wrote: t I've had this trouble before, how do I find the details of how in t works in the documentation. E.g. the details of:- t if string in bigstring: t It gets a mention in the if

Re: How to find in in the documentation

2009-03-14 Thread Tim Golden
jkn wrote: On Mar 14, 7:00 am, Tim Golden m...@timgolden.me.uk wrote: Well, this may not solve the OP's problem, but the current (2.7a0) .chm file has a much better index for operators and keywords. And in is in there. If you're interested in comparing, there's a copy here:

Re: How to find in in the documentation

2009-03-14 Thread Colin J. Williams
Tim Golden wrote: Colin J. Williams wrote: Piet van Oostrum wrote: tinn...@isbd.co.uk (t) wrote: t I've had this trouble before, how do I find the details of how in t works in the documentation. E.g. the details of:- t if string in bigstring: t It gets a mention in the if section

Re: How to find in in the documentation

2009-03-14 Thread Tim Golden
Colin J. Williams wrote: Tim Golden wrote: Colin J. Williams wrote: Piet van Oostrum wrote: tinn...@isbd.co.uk (t) wrote: t I've had this trouble before, how do I find the details of how in t works in the documentation. E.g. the details of:- t if string in bigstring: t It gets a

How to find in in the documentation

2009-03-13 Thread tinnews
I've had this trouble before, how do I find the details of how in works in the documentation. E.g. the details of:- if string in bigstring: It gets a mention in the if section but not a lot. -- Chris Green -- http://mail.python.org/mailman/listinfo/python-list

Re: How to find in in the documentation

2009-03-13 Thread Albert Hopkins
On Fri, 2009-03-13 at 21:01 +, tinn...@isbd.co.uk wrote: I've had this trouble before, how do I find the details of how in works in the documentation. E.g. the details of:- if string in bigstring: It gets a mention in the if section but not a lot. From

Re: How to find in in the documentation

2009-03-13 Thread Benjamin Peterson
tinnews at isbd.co.uk writes: I've had this trouble before, how do I find the details of how in works in the documentation. E.g. the details of:- if string in bigstring: It gets a mention in the if section but not a lot. Look here:

Re: How to find in in the documentation

2009-03-13 Thread Tim Chase
I've had this trouble before, how do I find the details of how in works in the documentation. E.g. the details of:- if string in bigstring: It's tough to find those generic keywords. It happens to be documented a bit here: http://docs.python.org/library/operator.html#operator.contains

Re: How to find in in the documentation

2009-03-13 Thread tinnews
Albert Hopkins mar...@letterboxes.org wrote: On Fri, 2009-03-13 at 21:01 +, tinn...@isbd.co.uk wrote: I've had this trouble before, how do I find the details of how in works in the documentation. E.g. the details of:- if string in bigstring: It gets a mention in the if

Re: How to find in in the documentation

2009-03-13 Thread Piet van Oostrum
tinn...@isbd.co.uk (t) wrote: t I've had this trouble before, how do I find the details of how in t works in the documentation. E.g. the details of:- t if string in bigstring: t It gets a mention in the if section but not a lot. It is explained in The Python Language Reference, chapter

Re: How to find in in the documentation

2009-03-13 Thread Colin J. Williams
Piet van Oostrum wrote: tinn...@isbd.co.uk (t) wrote: t I've had this trouble before, how do I find the details of how in t works in the documentation. E.g. the details of:- t if string in bigstring: t It gets a mention in the if section but not a lot. It is explained in The

Re: How to find in in the documentation

2009-03-13 Thread Gabriel Genellina
En Fri, 13 Mar 2009 19:46:11 -0200, tinn...@isbd.co.uk escribió: Albert Hopkins mar...@letterboxes.org wrote: On Fri, 2009-03-13 at 21:01 +, tinn...@isbd.co.uk wrote: I've had this trouble before, how do I find the details of how in works in the documentation. E.g. the details of:-