On Mon, 2010-08-02 at 11:59 -0400, Che M wrote:
> Mac, I found this an excellent brief overview of UT and your points
> all
> seem very strong to me. Thanks very much. I admit I didn't really
> know
> anything about the topic and was mentioning my feelings on the matter
> partly to elicit enlight
Dear Python Users,
I'm having real difficulty understanding why the following is not
working and hoped I've either missed something obvious of I'm doing
something wrong!
class A:
def break_down(self, value, base, broken_list=[]):
power = len(broken_list)
digit = int((value % (
Ok a little more investigation has found the follwing work but there
not as tidy. I'd still really appreciate someone explaing why this
behaves like this!
class A:
def break_down(self, value, base, broken_list=[]):
power = len(broken_list)
digit = (value % (base ** (power + 1))) /
Wesley Brooks wrote:
> I'm having real difficulty understanding why the following is not
> working and hoped I've either missed something obvious of I'm doing
> something wrong!
>
> class A:
> def break_down(self, value, base, broken_list=[]):
> I'm a little stumped as I don't think I'm usin
Morning Peter,
Thanks, that was something I was unaware of! Not sure how I hadn't
bumped into that before!
Cheers,
Wesley.
On 3 August 2010 11:40, Peter Otten <__pete...@web.de> wrote:
> Wesley Brooks wrote:
>
>> I'm having real difficulty understanding why the following is not
>> working and h
Hi, Peter.
Sorry for the delay, I've been out for a while.
So I did what you suggested and it prints the following:
"
import sys
print >> sys.stderr, sys.stdout.encoding
what does the above print
(a) when you print to the console? it prints cp850
(b) when you redirect to a file? it prints None
"
On Tue, 3 Aug 2010 10:52:27 am Richard D. Moores wrote:
> On Mon, Aug 2, 2010 at 16:57, Steven D'Aprano
wrote:
> > # File *probably* doesn't exist. Consider better error checking.
>
> Steve, before I dig into your detailed reply, please tell me what you
> meant by " # File *probably* doesn't exi
Alex Baraibar wrote:
> Hi, Peter.
> Sorry for the delay, I've been out for a while.
> So I did what you suggested and it prints the following:
>
> "
> import sys
> print >> sys.stderr, sys.stdout.encoding
>
> what does the above print
> (a) when you print to the console? it prints cp850
> (b) wh
On Tue, Aug 3, 2010 at 08:04, Steven D'Aprano wrote:
> On Tue, 3 Aug 2010 10:52:27 am Richard D. Moores wrote:
>> On Mon, Aug 2, 2010 at 16:57, Steven D'Aprano
> wrote:
>> > # File *probably* doesn't exist. Consider better error checking.
>>
>> Steve, before I dig into your detailed reply, pleas
Hello All,
I'm attempting to write a simple telnet client. Yes, I've been told that I
should be using twisted to do this. I want to learn to do it myself first,
so that I can fully understand the concepts - then I will scrap it and
switch to using twisted.
When I started, I didn't realize there
10 matches
Mail list logo