473,395 Members | 1,972 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

send yield

Why can't I write this?
Jun 27 '08 #1
17 1861
On May 15, 8:32*am, castironpi <castiro...@gmail.comwrote:
Why can't I write this?
It is twice one. Now: Where's My Volume?
Jun 27 '08 #2
castironpi <ca********@gmail.comwrote:
Why can't I write this?
--
http://mail.python.org/mailman/listinfo/python-list

Because you don't know how?

max

Jun 27 '08 #3
castironpi a écrit :
Why can't I write this?
Because one or more of the "t", "h", "i", "s" keys are missing from your
keyboard ?
Jun 27 '08 #4
On May 15, 9:04*am, Bruno Desthuilliers <bruno.
42.desthuilli...@websiteburo.invalidwrote:
castironpi a écrit :
Why can't I write this?

Because one or more of the "t", "h", "i", "s" keys are missing from your
keyboard ?
No; they're all here.
Jun 27 '08 #5
On May 15, 9:07*am, castironpi <castiro...@gmail.comwrote:
On May 15, 9:04*am, Bruno Desthuilliers <bruno.

42.desthuilli...@websiteburo.invalidwrote:
castironpi a écrit :
Why can't I write this?
Because one or more of the "t", "h", "i", "s" keys are missing from your
keyboard ?

No; they're all here.
I have

life1= Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
Jun 27 '08 #6
On Thu, May 15, 2008 at 9:32 AM, castironpi <ca********@gmail.comwrote:
Why can't I write this?
--
Because your antecedent is undefined?
Jun 27 '08 #7
On May 15, 9:26*am, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.comwrote:
Why can't I write this?
--

Because your antecedent is undefined?
Of the two ways to play, just to say #define this per se would be a
bad move, but that's one that comes from the wrong group. #define is
a big scary macro, that python hasn't been using; it's the one-line
typo. Instance:

#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )

Use it to render planes in solids.

Back about 'this', I honestly hadn't remembered 'til this time, when I
got a chance to reread the subject. Plus I keep ditching my radio.

--
Jun 27 '08 #8
On 15 mai, 16:40, castironpi <castiro...@gmail.comwrote:
On May 15, 9:26 am, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.comwrote:
Why can't I write this?
--
Because your antecedent is undefined?

Of the two ways to play, just to say #define this per se would be a
bad move, but that's one that comes from the wrong group. #define is
a big scary macro, that python hasn't been using; it's the one-line
typo. Instance:

#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )

Use it to render planes in solids.

Back about 'this', I honestly hadn't remembered 'til this time, when I
got a chance to reread the subject. Plus I keep ditching my radio.
Jesus H. Christ. This really sounds like my mother in law. Scary,
definitively.
Jun 27 '08 #9
On May 15, 4:28*pm, "bruno.desthuilli...@gmail.com"
<bruno.desthuilli...@gmail.comwrote:
On 15 mai, 16:40, castironpi <castiro...@gmail.comwrote:


On May 15, 9:26 am, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.comwrote:
Why can't I write this?
--
Because your antecedent is undefined?
Of the two ways to play, just to say #define this per se would be a
bad move, but that's one that comes from the wrong group. *#define is
a big scary macro, that python hasn't been using; it's the one-line
typo. *Instance:
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
Use it to render planes in solids.
Back about 'this', I honestly hadn't remembered 'til this time, when I
got a chance to reread the subject. *Plus I keep ditching my radio.

Jesus H. Christ. This really sounds like my mother in law. Scary,
definitively.- Hide quoted text -

- Show quoted text -
Definitely. But, due, I forgot to complete an example.
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
in C. Python:

life1= 'Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )'
exec( life1 )

Where does it go?
Jun 27 '08 #10
On May 15, 6:16*pm, castironpi <castiro...@gmail.comwrote:
On May 15, 4:28*pm, "bruno.desthuilli...@gmail.com"

<bruno.desthuilli...@gmail.comwrote:
On 15 mai, 16:40, castironpi <castiro...@gmail.comwrote:
On May 15, 9:26 am, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.comwrote:
Why can't I write this?
--
Because your antecedent is undefined?
Of the two ways to play, just to say #define this per se would be a
bad move, but that's one that comes from the wrong group. *#define is
a big scary macro, that python hasn't been using; it's the one-line
typo. *Instance:
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
Use it to render planes in solids.
Back about 'this', I honestly hadn't remembered 'til this time, when I
got a chance to reread the subject. *Plus I keep ditching my radio.
Jesus H. Christ. This really sounds like my mother in law. Scary,
definitively.- Hide quoted text -
- Show quoted text -

Definitely. *But, due, I forgot to complete an example.
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )

in C. *Python:

life1= 'Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )'
exec( life1 )

Where does it go?- Hide quoted text -

- Show quoted text -
I'm supposed to talk about an entropy pool game. You can tunnel.
Jun 27 '08 #11
On Thursday 15 May 2008 09:32:37 am castironpi wrote:
Why can't I write this?
--
http://mail.python.org/mailman/listinfo/python-list
yield recieved.

Thanks.

--
Luis Zarrabeitia (aka Kyrie)
Fac. de Matemática y Computación, UH.
http://profesores.matcom.uh.cu/~kyrie
Jun 27 '08 #12
On Thu, May 15, 2008 at 8:05 PM, Luis Zarrabeitia <ky***@uh.cuwrote:
On Thursday 15 May 2008 09:32:37 am castironpi wrote:
>Why can't I write this?
--
http://mail.python.org/mailman/listinfo/python-list

yield recieved.

Thanks.
Should that be

ack yield

?
Jun 27 '08 #13
On May 15, 6:43*pm, castironpi <castiro...@gmail.comwrote:
On May 15, 6:16*pm, castironpi <castiro...@gmail.comwrote:


On May 15, 4:28*pm, "bruno.desthuilli...@gmail.com"
<bruno.desthuilli...@gmail.comwrote:
On 15 mai, 16:40, castironpi <castiro...@gmail.comwrote:
On May 15, 9:26 am, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.com>wrote:
Why can't I write this?
--
Because your antecedent is undefined?
Of the two ways to play, just to say #define this per se would be a
bad move, but that's one that comes from the wrong group. *#defineis
a big scary macro, that python hasn't been using; it's the one-line
typo. *Instance:
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
Use it to render planes in solids.
Back about 'this', I honestly hadn't remembered 'til this time, whenI
got a chance to reread the subject. *Plus I keep ditching my radio..
Jesus H. Christ. This really sounds like my mother in law. Scary,
definitively.- Hide quoted text -
- Show quoted text -
Definitely. *But, due, I forgot to complete an example.
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
in C. *Python:
life1= 'Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )'
exec( life1 )
Where does it go?- Hide quoted text -
- Show quoted text -

I'm supposed to talk about an entropy pool game. *You can tunnel.- Hide quoted text -

- Show quoted text -
If I had a send-parachute, would all you need be yield? Let's drop
graphics.
Jun 27 '08 #14
On May 15, 7:07*pm, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 8:05 PM, Luis Zarrabeitia <ky...@uh.cuwrote:
On Thursday 15 May 2008 09:32:37 am castironpi wrote:
Why can't I write this?
--
http://mail.python.org/mailman/listinfo/python-list
yield recieved.
Thanks.

Should that be

ack yield

?
I'd be putting parachutes on people's screens, but on a newsgroup. I
might have time-parachutes too: something that lands softer.
Jun 27 '08 #15
On May 15, 7:16*pm, castironpi <castiro...@gmail.comwrote:
On May 15, 6:43*pm, castironpi <castiro...@gmail.comwrote:


On May 15, 6:16*pm, castironpi <castiro...@gmail.comwrote:
On May 15, 4:28*pm, "bruno.desthuilli...@gmail.com"
<bruno.desthuilli...@gmail.comwrote:
On 15 mai, 16:40, castironpi <castiro...@gmail.comwrote:
On May 15, 9:26 am, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.comwrote:
Why can't I write this?
--
Because your antecedent is undefined?
Of the two ways to play, just to say #define this per se would be a
bad move, but that's one that comes from the wrong group. *#define is
a big scary macro, that python hasn't been using; it's the one-line
typo. *Instance:
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
Use it to render planes in solids.
Back about 'this', I honestly hadn't remembered 'til this time, when I
got a chance to reread the subject. *Plus I keep ditching my radio.
Jesus H. Christ. This really sounds like my mother in law. Scary,
definitively.- Hide quoted text -
- Show quoted text -
Definitely. *But, due, I forgot to complete an example.
#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
in C. *Python:
life1= 'Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )'
exec( life1 )
Where does it go?- Hide quoted text -
- Show quoted text -
I'm supposed to talk about an entropy pool game. *You can tunnel.- Hide quoted text -
- Show quoted text -

If I had a send-parachute, would all you need be yield? *Let's drop
graphics.- Hide quoted text -

- Show quoted text -
My character is studying chord progressions. I have right angles.
I'm on a laptop, and talking in the car is fine.
Jun 27 '08 #16
On May 15, 7:40*pm, castironpi <castiro...@gmail.comwrote:
On May 15, 7:07*pm, "Dan Upton" <up...@virginia.eduwrote:
On Thu, May 15, 2008 at 8:05 PM, Luis Zarrabeitia <ky...@uh.cuwrote:
On Thursday 15 May 2008 09:32:37 am castironpi wrote:
>Why can't I write this?
>--
>>http://mail.python.org/mailman/listinfo/python-list
yield recieved.
Thanks.
Should that be
ack yield
?

I'd be putting parachutes on people's screens, but on a newsgroup. *I
might have time-parachutes too: something that lands softer.
Does anyone want furniture put in a room?
Jun 27 '08 #17
castironpi wrote:
On May 15, 7:16 pm, castironpi <castiro...@gmail.comwrote:
>On May 15, 6:43 pm, castironpi <castiro...@gmail.comwrote:

>>On May 15, 6:16 pm, castironpi <castiro...@gmail.comwrote:

On May 15, 4:28 pm, "bruno.desthuilli...@gmail.com"

<bruno.desthuilli...@gmail.comwrote:

On 15 mai, 16:40, castironpi <castiro...@gmail.comwrote:
>
>On May 15, 9:26 am, "Dan Upton" <up...@virginia.eduwrote:
>>
>>On Thu, May 15, 2008 at 9:32 AM, castironpi <castiro...@gmail.comwrote:
>>>
>>>Why can't I write this?
>>>--
>>>>
>>Because your antecedent is undefined?
>>>
>Of the two ways to play, just to say #define this per se would be a
>bad move, but that's one that comes from the wrong group. #define is
>a big scary macro, that python hasn't been using; it's the one-line
>typo. Instance:
>>
>#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
>>
>Use it to render planes in solids.
>>
>Back about 'this', I honestly hadn't remembered 'til this time, when I
>got a chance to reread the subject. Plus I keep ditching my radio.
>>
Jesus H. Christ. This really sounds like my mother in law. Scary,
definitively.- Hide quoted text -
>
- Show quoted text -
>
Definitely. But, due, I forgot to complete an example.

>#define life1 Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )
>>
in C. Python:

life1= 'Tron( drive.SIZE[ 0 ]/ 2, drive.SIZE[ 1 ]/ 2 )'
exec( life1 )

Where does it go?- Hide quoted text -

- Show quoted text -

I'm supposed to talk about an entropy pool game. You can tunnel.- Hide quoted text -

- Show quoted text -
If I had a send-parachute, would all you need be yield? Let's drop
graphics.- Hide quoted text -

- Show quoted text -

My character is studying chord progressions. I have right angles.
I'm on a laptop, and talking in the car is fine.
--
http://mail.python.org/mailman/listinfo/python-list

My olive grove gave birth to many world war I biplanes.... I think I
need more salt.

This thread gave me hope...

--

The three things to remember about Llamas:
1) They are harmless
2) They are deadly
3) They are made of lava, and thus nice to cuddle.
Jun 27 '08 #18

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: yyhhjj | last post by:
I created a test program to implement an iterator. First, I used 'yield break' in the iterator, it worked normally. Then, I simply used 'break' in the places of 'yield break', it still worked...
2
by: IntraRELY | last post by:
I know this isnt really a VB question per say, but is what I am developing in VB.NET and Excel is the only place that has provided direction. I wanted to ask the public if perhaps you could lend me...
3
by: Bob | last post by:
Hi, Win2kServer Platform I dusted off some fax sending code that used to work. The send is now returning 'The date is invalid. System.Runtime.InteropServices.COMException(0x8007000D): The data...
3
by: andy.leszczynski | last post by:
Hi, I might understand why this does not work, but I am not convinced it should not - following: def nnn(): print 'inside' yield 1 def nn():
22
by: Mateuszk87 | last post by:
Hi. may someone explain "yield" function, please. how does it actually work and when do you use it? thanks in forward mateusz
3
by: Ehsan | last post by:
hi coulde any one show me the usage of "yield" keyword specially in this example: """Fibonacci sequences using generators This program is part of "Dive Into Python", a free Python book for...
7
by: Alex Bryan | last post by:
Okay, so i don't really understand the Yield thing and i know it is useful. I've read a few things about it but it is all programming jargon and so basically it is hard for me to understand. So can...
5
by: defn noob | last post by:
def letters(): a = xrange(ord('a'), ord('z')+1) B = xrange(ord('A'), ord('Z')+1) while True: yield chr(a) yield chr(B) Traceback (most recent call last):
7
by: Thomas Mlynarczyk | last post by:
Hello, I was playing around a bit with generators using next() and send(). And I was wondering why an extra send() method was introduced instead of simply allowing an argument for next(). ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.