pjmcle...@gmail.com:
> not sure why utf-8 gives an error when thats the most wide all caracters
> inclusive right?/
Not all sequences of bytes are legal in UTF-8. For example,
>>> b'\x80'.decode("utf-8")
Traceback (most recent call last):
File &q
On Saturday, October 20, 2018 at 1:23:50 PM UTC-4, Terry Reedy wrote:
> On 10/20/2018 8:24 AM, pjmcle...@gmail.com wrote:
> > On Saturday, October 13, 2018 at 7:24:14 PM UTC-4, MRAB wrote:
>
> > i have a sort of decode error
> > UnicodeDecodeError; 'utf-8' can
)
> File "C:\Python30\lib\encodings\cp1252.py", line 23, in decode
> return codecs.charmap_decode(input,self.errors,decoding_table)[0]
> UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position
> 10442: character maps to
>
> The string at position 10442
On 10/20/2018 8:24 AM, pjmcle...@gmail.com wrote:
On Saturday, October 13, 2018 at 7:24:14 PM UTC-4, MRAB wrote:
i have a sort of decode error
UnicodeDecodeError; 'utf-8' can't decode byte 0xb0 in position 83064: invalid
start byte
*
and it seems to refer
us encode errors in python 3
the error now is
**
UnicodeDecodeError; 'utf-8' can't decode byte 0xb0 in position 83064: invalid
start byte
[...]
would the solution fix be this?
**
data = f.read(), decoding = "utf-8" #OR
data = f.re
#x27;m not MRAB and I don't
read this on Google Groups, but I'll answer anyway ;-).
> i have a sort of decode error it seems now very close to the line in my script
> which you solved for my 2 previous encode errors in python 3
>
> the error now is
> **
>
gt; >
> > with open(join("docs", path)) as f:
> >
> > where can i add the encoding="utf8" line??
> > does anyone on this forum happen to know??
> >
> > ok thank you jessica
> >
> with open(join("docs", path), encodi
On Saturday, October 13, 2018 at 7:24:14 PM UTC-4, MRAB wrote:
> On 2018-10-14 00:13, pjmcle...@gmail.com wrote:
> > On Wednesday, June 13, 2018 at 7:14:06 AM UTC-4, INADA Naoki wrote:
> >> > 1st is this script is from a library module online open source
> >>
> >> If it's open source, why didn't
On 2018-10-14 00:13, pjmcle...@gmail.com wrote:
On Wednesday, June 13, 2018 at 7:14:06 AM UTC-4, INADA Naoki wrote:
> 1st is this script is from a library module online open source
If it's open source, why didn't you show the link to the soruce?
I assume your code is this:
https://github.com/
On Wednesday, June 13, 2018 at 7:14:06 AM UTC-4, INADA Naoki wrote:
> > 1st is this script is from a library module online open source
>
> If it's open source, why didn't you show the link to the soruce?
> I assume your code is this:
>
> https://github.com/siddharth2010/String-Search/blob/6770c7
On Wednesday, June 13, 2018 at 7:14:06 AM UTC-4, INADA Naoki wrote:
> > 1st is this script is from a library module online open source
>
> If it's open source, why didn't you show the link to the soruce?
> I assume your code is this:
>
> https://github.com/siddharth2010/String-Search/blob/6770c7
On Thursday, August 30, 2018 at 2:05:16 PM UTC-4, pjmc...@gmail.com wrote:
> On Thursday, August 30, 2018 at 1:29:48 PM UTC-4, MRAB wrote:
> > On 2018-08-30 17:57, pjmcle...@gmail.com wrote:
> > > On Thursday, August 30, 2018 at 9:28:09 AM UTC-4, Steven D'Aprano wrote:
> > >> On Thu, 30 Aug 2018 05
On Thursday, August 30, 2018 at 1:29:48 PM UTC-4, MRAB wrote:
> On 2018-08-30 17:57, pjmcle...@gmail.com wrote:
> > On Thursday, August 30, 2018 at 9:28:09 AM UTC-4, Steven D'Aprano wrote:
> >> On Thu, 30 Aug 2018 05:21:30 -0700, pjmclenon wrote:
> >>
> >> > my question is ... at the moment i can
On 2018-08-30 17:57, pjmcle...@gmail.com wrote:
On Thursday, August 30, 2018 at 9:28:09 AM UTC-4, Steven D'Aprano wrote:
On Thu, 30 Aug 2018 05:21:30 -0700, pjmclenon wrote:
> my question is ... at the moment i can only run it on windows cmd prompt
> with a multiple line entry as so::
>
> pyth
On Thursday, August 30, 2018 at 9:28:09 AM UTC-4, Steven D'Aprano wrote:
> On Thu, 30 Aug 2018 05:21:30 -0700, pjmclenon wrote:
>
> > my question is ... at the moment i can only run it on windows cmd prompt
> > with a multiple line entry as so::
> >
> > python createIndex_tfidf.py stopWords.dat t
On Thu, 30 Aug 2018 05:21:30 -0700, pjmclenon wrote:
> my question is ... at the moment i can only run it on windows cmd prompt
> with a multiple line entry as so::
>
> python createIndex_tfidf.py stopWords.dat testCollection.dat
> testIndex.dat titleIndex.dat
>
> and then to query and use the n
On Thursday, August 30, 2018 at 8:21:47 AM UTC-4, pjmc...@gmail.com wrote:
> On Wednesday, June 13, 2018 at 7:14:06 AM UTC-4, INADA Naoki wrote:
> > > 1st is this script is from a library module online open source
> >
> > If it's open source, why didn't you show the link to the soruce?
> > I assu
On Wednesday, June 13, 2018 at 7:14:06 AM UTC-4, INADA Naoki wrote:
> > 1st is this script is from a library module online open source
>
> If it's open source, why didn't you show the link to the soruce?
> I assume your code is this:
>
> https://github.com/siddharth2010/String-Search/blob/6770c7
On Wednesday, 13 June 2018 09:12:32 UTC-4, Steven D'Aprano wrote:
> On Wed, 13 Jun 2018 03:55:58 -0700, bellcanadardp wrote:
>
> > the collFile has to be like a variable that would refer to the file
> > Collection.dat..thats my best guess also in the error line , it doesnt
> > actually open the f
On Wednesday, 13 June 2018 07:14:06 UTC-4, INADA Naoki wrote:
> > 1st is this script is from a library module online open source
>
> If it's open source, why didn't you show the link to the soruce?
> I assume your code is this:
>
> https://github.com/siddharth2010/String-Search/blob/6770c7a1e81
On Wed, 13 Jun 2018 03:55:58 -0700, bellcanadardp wrote:
> the collFile has to be like a variable that would refer to the file
> Collection.dat..thats my best guess also in the error line , it doesnt
> actually open the file ...
The file has to be opened if you are reading from it. If it isn't op
On Wed, 13 Jun 2018 04:01:24 -0700, bellcanadardp wrote:
> for line in self.collFile.decode("utf-8"):
> i actually write.encode...then i tried the decode but both dont have any
> effect
Raising AttributeError isn't an effect?
py> f = open("/tmp/x")
py> f.write.decode
Traceback (most recent call
> 1st is this script is from a library module online open source
If it's open source, why didn't you show the link to the soruce?
I assume your code is this:
https://github.com/siddharth2010/String-Search/blob/6770c7a1e811a5d812e7f9f7c5c83a12e5b28877/createIndex.py
And self.collFile is opened h
> >File "creatIndex.py", line 102, in createIndex
> >pagedict=self.parseCollection()
> >File "createIndex.py", line 47, in parseCollection
> >for line in self.collFile:
> >File
> >"C:\Users\Robert\AppData\Local\Programs\Python\Python36\
> >File "creatIndex.py", line 102, in createIndex
> >pagedict=self.parseCollection()
> >File "createIndex.py", line 47, in parseCollection
> >for line in self.collFile:
> >File
> >"C:\Users\Robert\AppData\Local\Programs\Python\Python36\
> >File "creatIndex.py", line 102, in createIndex
> >pagedict=self.parseCollection()
> >File "createIndex.py", line 47, in parseCollection
> >for line in self.collFile:
> >File
> >"C:\Users\Robert\AppData\Local\Programs\Python\Python36\
rt\AppData\Local\Programs\Python\Python36\lib\encodings\cp1252.py",
line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table[0]
UnicodeDecodeError: 'charmap'codec can't decode byte 0x9d in position 7414: character
maps to
Ok, this is more helpful. It s
On Mon, Jun 11, 2018 at 2:49 AM, wrote:
>
> excuse but sorry
> i took the time to manually write the code error from the traceback as you
> said
> and thats because i cant seem to find a way to attach files here..which would
> make it so easier for me and also i could attach snippets of the act
nterface to
> both
> usenet and mailing lists.
>
> >File
> >"C:\Users\Robert\AppData\Local\Programs\Python\Python36\lib\encodings\cp1252.py",
> >
> >line 23, in decode
> >return codecs.charmap_decode(input,self.errors,decoding_table[0]
> &
On Sunday, 10 June 2018 10:23:47 UTC-4, Steven D'Aprano wrote:
> Do you enjoy wasting your own time (as well as ours) by failing to follow
> instructions?
>
> We can't read your mind to see the code you are using, and I am getting
> frustrated from telling you the same thing again and again.
>
Do you enjoy wasting your own time (as well as ours) by failing to follow
instructions?
We can't read your mind to see the code you are using, and I am getting
frustrated from telling you the same thing again and again.
PLEASE PLEASE PLEASE PLEASE help us to help you.
Start by reading this:
h
quot;, line 132, in
c.createindex()
File "creatIndex.py", line 102, in createIndex
pagedict=self.parseCollection()
File "createIndex.py", line 47, in parseCollection
for line in self.collFile:
File
"C:\Users\Robert\AppData\Local\Programs\Python\Python36\lib\encod
On Sat, 09 Jun 2018 08:26:10 +1000, Cameron Simpson wrote:
> It is possible that Python 2 is just glossing over the problem; Python 3
> has a more rigorous view of character data.
I would say that is more than just possible, it is almost certain.
--
Steven D'Aprano
"Ever since I learned about
.
I've CCed it here. Just avoid Google Groups, they're an awful interface to both
usenet and mailing lists.
File
"C:\Users\Robert\AppData\Local\Programs\Python\Python36\lib\encodings\cp1252.py",
line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table[
On Fri, 08 Jun 2018 03:35:12 -0700, bellcanadardp wrote:
> hello steven are you there??
> i posted the full error message...
No you didn't.
I saw your post, and ignored it, because you didn't follow instructions.
I told you we need to see the *full* traceback, starting from the line
beginning
On Sunday, 3 June 2018 20:11:43 UTC-4, Steven D'Aprano wrote:
> On Sun, 03 Jun 2018 16:36:12 -0700, bellcanadardp wrote:
>
> > hello peter ...how exactly would i solve this issue .i have a script
> > that works in python 2 but not pytho3..i did 2 to 3.py ...but i still
> > get the errro...cha
ng
> it everywhere." -- Jon Ronson
here is the exact error full message
in the attachment...UPDATE..i am manually modifying this reply..i tried to
answer by my gmail but i get errors and i couldnt find this webpage till today
and it doesnt accept attachments..so many you can for fu
On 2018-06-03 16:36:12 -0700, bellcanada...@gmail.com wrote:
> On Tuesday, 22 May 2018 17:23:55 UTC-4, Peter J. Holzer wrote:
> > On 2018-05-20 15:43:54 +0200, Karsten Hilbert wrote:
> > > On Sun, May 20, 2018 at 04:59:12AM -0700, bellcanada...@gmail.com wrote:
> > > > thank you for the reply, but
On Sun, 03 Jun 2018 16:36:12 -0700, bellcanadardp wrote:
> hello peter ...how exactly would i solve this issue .i have a script
> that works in python 2 but not pytho3..i did 2 to 3.py ...but i still
> get the errro...character undefieed..unicode decode error cant decode
> byte 1x09 in line 74
On Tuesday, 22 May 2018 17:23:55 UTC-4, Peter J. Holzer wrote:
> On 2018-05-20 15:43:54 +0200, Karsten Hilbert wrote:
> > On Sun, May 20, 2018 at 04:59:12AM -0700, bellcanada...@gmail.com wrote:
> >
> > > On Saturday, 19 May 2018 19:48:20 UTC-4, Skip Montanaro wrote:
> > > > As Chris indicated,
On 2018-05-29 16:20:36 +, Steven D'Aprano wrote:
> On Tue, 29 May 2018 14:04:19 +0200, Peter J. Holzer wrote:
>
> > The OP has one file.
>
> We don't know that. All we know is that he had one file which he was
> unable to read. For all we know, he has a million files, and this was
> merely
On Tue, 29 May 2018 14:04:19 +0200, Peter J. Holzer wrote:
> The OP has one file.
We don't know that. All we know is that he had one file which he was
unable to read. For all we know, he has a million files, and this was
merely the first of many failures.
> He wants to read it. The very fact
On Tue, 29 May 2018 10:34:50 +0200, Peter J. Holzer wrote:
> On 2018-05-23 06:03:38 +, Steven D'Aprano wrote:
>> On Wed, 23 May 2018 00:31:03 +0200, Peter J. Holzer wrote:
>> > On 2018-05-23 07:38:27 +1000, Chris Angelico wrote:
>> >> You can find an encoding which is capable of decoding a fil
On 2018-05-29 21:13:43 +1000, Chris Angelico wrote:
> You can always solve a subset of problems. Using your own knowledge of
> German, you are able to better solve problems involving German text.
> But that doesn't make you any better than chardet at validating
> Chinese text, or Korean text, or Kl
On Tue, May 29, 2018 at 8:59 PM, Peter J. Holzer wrote:
> On 2018-05-29 20:28:54 +1000, Chris Angelico wrote:
>> Sure, but you're describing a set of rules. If you can define a set of
>> rules that pin down the encoding, you could teach chardet to follow
>> those rules. If you can't teach chardet
On 2018-05-29 20:28:54 +1000, Chris Angelico wrote:
> On Tue, May 29, 2018 at 8:09 PM, Peter J. Holzer wrote:
> > On 2018-05-29 19:46:24 +1000, Chris Angelico wrote:
> >> That's basically what the chardet module does, and its error rate is
> >> far FAR higher than that. If you think it's easy to d
On Tue, May 29, 2018 at 8:09 PM, Peter J. Holzer wrote:
> On 2018-05-29 19:46:24 +1000, Chris Angelico wrote:
>> On Tue, May 29, 2018 at 6:15 PM, Peter J. Holzer wrote:
>> > So if the text is German it will contain more words with
>> > umlauts and each byte which is part of a correctly spelled Ge
On 2018-05-29 19:47:37 +1000, Chris Angelico wrote:
> On Tue, May 29, 2018 at 6:34 PM, Peter J. Holzer wrote:
> > On 2018-05-23 06:03:38 +, Steven D'Aprano wrote:
> >> Mojibake is especially difficult to deal with when you are dealing with
> >> short text snippets like file names or user names
On 2018-05-29 19:46:24 +1000, Chris Angelico wrote:
> On Tue, May 29, 2018 at 6:15 PM, Peter J. Holzer wrote:
> > So if the text is German it will contain more words with
> > umlauts and each byte which is part of a correctly spelled German word
> > when interpreted according to ISO-8859-1 increas
On Tue, May 29, 2018 at 6:34 PM, Peter J. Holzer wrote:
> On 2018-05-23 06:03:38 +, Steven D'Aprano wrote:
>> Mojibake is especially difficult to deal with when you are dealing with
>> short text snippets like file names or user names which can contain
>> arbitrary characters, where there is r
On Tue, May 29, 2018 at 6:15 PM, Peter J. Holzer wrote:
> So if the text is German it will contain more words with
> umlauts and each byte which is part of a correctly spelled German word
> when interpreted according to ISO-8859-1 increases the probability that
> decoding with ISO-8859-1 will prod
On 2018-05-23 06:03:38 +, Steven D'Aprano wrote:
> On Wed, 23 May 2018 00:31:03 +0200, Peter J. Holzer wrote:
> > On 2018-05-23 07:38:27 +1000, Chris Angelico wrote:
> >> You can find an encoding which is capable of decoding a file. That's
> >> not the same thing.
> >
> > If the result is corr
On 2018-05-23 08:43:02 +1000, Chris Angelico wrote:
> On Wed, May 23, 2018 at 8:31 AM, Peter J. Holzer wrote:
> > On 2018-05-23 07:38:27 +1000, Chris Angelico wrote:
> >> > 1) For any given file it is almost always possible to find the correct
> >> >encoding (or *a* correct encoding, as there
On Thu, May 24, 2018 at 6:48 AM, Dan Stromberg wrote:
> On Sat, May 19, 2018 at 3:58 PM, wrote:
>> On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminarayanan
>> wrote:
>>> > It does auto-detect it as cp1252- look at the files in the traceback and
>>> > you'll see lib\encodings\cp12
On Sat, May 19, 2018 at 3:58 PM, wrote:
> On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminarayanan wrote:
>> > It does auto-detect it as cp1252- look at the files in the traceback and
>> > you'll see lib\encodings\cp1252.py. Since cp1252 seems to be the wrong
>> > encoding, try ope
On Wed, 23 May 2018 00:31:03 +0200, Peter J. Holzer wrote:
> On 2018-05-23 07:38:27 +1000, Chris Angelico wrote:
[...]
>> You can find an encoding which is capable of decoding a file. That's
>> not the same thing.
>
> If the result is correct, it is the same thing.
But how do you know what is co
On Wed, May 23, 2018 at 8:31 AM, Peter J. Holzer wrote:
> On 2018-05-23 07:38:27 +1000, Chris Angelico wrote:
>> On Wed, May 23, 2018 at 7:23 AM, Peter J. Holzer wrote:
>> >> The best you can do is to go ask the canonical source of the
>> >> file what encoding the file is _supposed_ to be in.
>>
On 2018-05-23 07:38:27 +1000, Chris Angelico wrote:
> On Wed, May 23, 2018 at 7:23 AM, Peter J. Holzer wrote:
> >> The best you can do is to go ask the canonical source of the
> >> file what encoding the file is _supposed_ to be in.
> >
> > I disagree on both counts.
> >
> > 1) For any given file
On Wed, May 23, 2018 at 7:23 AM, Peter J. Holzer wrote:
>> The best you can do is to go ask the canonical source of the
>> file what encoding the file is _supposed_ to be in.
>
> I disagree on both counts.
>
> 1) For any given file it is almost always possible to find the correct
>encoding (or
On 2018-05-20 15:43:54 +0200, Karsten Hilbert wrote:
> On Sun, May 20, 2018 at 04:59:12AM -0700, bellcanada...@gmail.com wrote:
>
> > On Saturday, 19 May 2018 19:48:20 UTC-4, Skip Montanaro wrote:
> > > As Chris indicated, you'll have to figure out the correct encoding. You
> > > might want to ch
On Sunday, 20 May 2018 08:58:32 UTC-4, Richard Damon wrote:
> On 5/20/18 7:59 AM, bellcanada...@gmail.com wrote:
> > On Saturday, 19 May 2018 19:03:09 UTC-4, Chris Angelico wrote:
> >> On Sun, May 20, 2018 at 8:58 AM, wrote:
> >>> On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminar
On Sun, May 20, 2018 at 04:59:12AM -0700, bellcanada...@gmail.com wrote:
> On Saturday, 19 May 2018 19:48:20 UTC-4, Skip Montanaro wrote:
> > As Chris indicated, you'll have to figure out the correct encoding. You
> > might want to check out the chardet module (available on PyPI, I believe)
> > a
> how exactly am i supposed to find oout what is the correct encodeing?
It seems you are a Python beginner. Rather than just tell you how to use
this one module, I'll point you at some of the ways to get help through
Python.
* On pypi.org, search for "chardet" and see if the author provided onlin
On 5/20/18 7:59 AM, bellcanada...@gmail.com wrote:
> On Saturday, 19 May 2018 19:03:09 UTC-4, Chris Angelico wrote:
>> On Sun, May 20, 2018 at 8:58 AM, wrote:
>>> On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminarayanan
>>> wrote:
> It does auto-detect it as cp1252- look at t
On Saturday, 19 May 2018 19:03:09 UTC-4, Chris Angelico wrote:
> On Sun, May 20, 2018 at 8:58 AM, wrote:
> > On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminarayanan
> > wrote:
> >> > It does auto-detect it as cp1252- look at the files in the traceback and
> >> > you'll see lib\e
On Saturday, 19 May 2018 19:48:20 UTC-4, Skip Montanaro wrote:
> As Chris indicated, you'll have to figure out the correct encoding. You
> might want to check out the chardet module (available on PyPI, I believe)
> and see if it can come up with a better guess. I imagine there are other
> encoding
;) will succeed with *every* file -- the
characters may be nonsensical, but you will *not* get a UnicodeDecodeError.
> ...is it better to try to run the file .py in python 2?
Not "better", but perhaps easier. If the code works with Python 2 then I
recommend that you use that.
If yo
As Chris indicated, you'll have to figure out the correct encoding. You
might want to check out the chardet module (available on PyPI, I believe)
and see if it can come up with a better guess. I imagine there are other
encoding guessers out there. That's just one I'm familiar with.
Skip
--
https:
On Sun, May 20, 2018 at 8:58 AM, wrote:
> On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminarayanan wrote:
>> > It does auto-detect it as cp1252- look at the files in the traceback and
>> > you'll see lib\encodings\cp1252.py. Since cp1252 seems to be the wrong
>> > encoding, try ope
On Thursday, 29 January 2009 12:09:29 UTC-5, Anjanesh Lekshminarayanan wrote:
> > It does auto-detect it as cp1252- look at the files in the traceback and
> > you'll see lib\encodings\cp1252.py. Since cp1252 seems to be the wrong
> > encoding, try opening it as utf-8 or latin1 and see if that fixe
__
> self.fields[field_name] = self.get_pynagField(field_name,
> css_tag="inherited") File "/opt/adagios/adagios/objectbrowser/forms.py",
> line 418, in get_pynagField _('%(inherited_value)s (inherited from
> template)') % {'inherited_value':
t;/opt/adagios/adagios/objectbrowser/forms.py", line 418, in get_pynagField
_('%(inherited_value)s (inherited from template)') % {'inherited_value':
smart_str(inherited_value)}
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 54:
ordinal not
matches.append(pathname)
>
>
> Traceback (most recent call last):
> File "", line 5, in
> if 'mimetypes' in open(pathname).read():
> File "C:\Python34\lib\encodings\cp1252.py", line 23, in decode
> return codecs.charmap_decode(input,sel
):
File "", line 5, in
if 'mimetypes' in open(pathname).read():
File "C:\Python34\lib\encodings\cp1252.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 308:
character maps to
--
https://mail.python.org/mailman/listinfo/python-list
On 11/27/2013 7:37 AM, Tim Golden wrote:
On 27/11/2013 08:31, Hoàng Tuấn Việt wrote:
I cannot see your reply in python-list until I search this question
on Internet again.
(cc-ing the OP because of the nature of the problem)
Viet,
That's because you're not subscribed to the list. The way it
On 27/11/2013 08:31, Hoàng Tuấn Việt wrote:
> I cannot see your reply in python-list until I search this question
> on Internet again.
(cc-ing the OP because of the nature of the problem)
Viet,
That's because you're not subscribed to the list. The way it works is
that you subscribe to the list a
Hi Fabio,
I cannot see your reply in python-list until I search this question on Internet
again.
I try (username.encode('utf-8') + '\r') and the problem is fixed.
Thank you very much.
Viet
>You should be able to reproduce the same behavior on PyDev if in your run
>configuratio
/],
}
},
console = [{/'script'/: /‘my_program.py'/}]
)
and run the programe, I encounter this error:
UnicodeDecodeError: 'ascii' codec can't decodee byte 0xff in position 0:
ordinal not in range(128)
at line:
connection.write(username + &
t;
> setup(
>
> options = {
>
> *"py2exe"*:{
>
> *"packages"*: [*'wx.lib.pubsub'*],
>
> *"dll_excludes"*: [*"MSVCP90.dll"*, *"HID.DLL"*,
> *"w9xpopen.e
On 11/17/2013 11:55 PM, Hoàng Tuấn Việt wrote:
Hi
I use Python telnetlib on Windows 7 32 bit. Here is my code:
To better help us help you, what exact version of Python?
Please post plain text without html.
Please post programs single spaced with just occasional blank lines.
--
Terry Jan Reed
quot;],
}
},
console = [{'script': ‘my_program.py'}]
)
and run the programe, I encounter this error:
UnicodeDecodeError: 'ascii' codec can't decodee byte 0xff in position 0:
ordinal not in range(128)
at line:
connection.write(username + '\r
Στις 2/10/2013 10:23 πμ, ο/η Antoon Pardon έγραψε:
Op 02-10-13 03:36, Steven D'Aprano schreef:
On Tue, 01 Oct 2013 09:27:22 +0200, Antoon Pardon wrote:
People pay for some kind of guaranteed uptime.
You have *no idea* what sort of contract Nikos has with his customers.
Nor do you know have a
Στις 2/10/2013 4:36 πμ, ο/η Steven D'Aprano έγραψε:
On Tue, 01 Oct 2013 09:27:22 +0200, Antoon Pardon wrote:
People pay for some kind of guaranteed uptime.
You have *no idea* what sort of contract Nikos has with his customers.
Nor do you know have any idea what fees he charges. For all we kno
Op 02-10-13 03:36, Steven D'Aprano schreef:
> On Tue, 01 Oct 2013 09:27:22 +0200, Antoon Pardon wrote:
>
>> People pay for some kind of guaranteed uptime.
>
> You have *no idea* what sort of contract Nikos has with his customers.
> Nor do you know have any idea what fees he charges. For all we k
On Tue, 01 Oct 2013 09:27:22 +0200, Antoon Pardon wrote:
> People pay for some kind of guaranteed uptime.
You have *no idea* what sort of contract Nikos has with his customers.
Nor do you know have any idea what fees he charges. For all we know, he
is promising, and charging for, 99% uptime whi
On 2013-09-30, ?? wrote:
> I learn during the process.
That's fine as long as your customers are told up front that what
they're paying for is _not_ a working usable service, but rahter a
training program for you personally (a training program that's failing
rather badly, IMO).
> That's
Op 01-10-13 10:39, Νίκος schreef:
> Στις 1/10/2013 10:27 πμ, ο/η Antoon Pardon έγραψε:
>> Op 01-10-13 01:14, Νίκος schreef:
>>> Στις 1/10/2013 1:56 πμ, ο/η Chris Angelico έγραψε:
But what you're doing
is charging your customers while you learn the very basics.
>>>
>>> I designed their web
Στις 1/10/2013 10:27 πμ, ο/η Antoon Pardon έγραψε:
Op 01-10-13 01:14, Νίκος schreef:
Στις 1/10/2013 1:56 πμ, ο/η Chris Angelico έγραψε:
But what you're doing
is charging your customers while you learn the very basics.
I designed their websites and they are up and running.
Yes i have charged s
Op 01-10-13 01:14, Νίκος schreef:
> Στις 1/10/2013 1:56 πμ, ο/η Chris Angelico έγραψε:
>> But what you're doing
>> is charging your customers while you learn the very basics.
>
> I designed their websites and they are up and running.
> Yes i have charged some money, but they gain what they paid fo
On Tue, 01 Oct 2013 01:08:41 +0300, Νίκος wrote:
> stfu dickhead.
And you're back in the kill-file.
*plonk*
--
Steven
--
https://mail.python.org/mailman/listinfo/python-list
Στις 1/10/2013 1:56 πμ, ο/η Chris Angelico έγραψε:
But what you're doing
is charging your customers while you learn the very basics.
I designed their websites and they are up and running.
Yes i have charged some money, but they gain what they paid for, a
running website, all of them.
So, its
On Tue, Oct 1, 2013 at 8:36 AM, Νίκος wrote:
> I learn during the process.
> That's how i deal with the situation.
> I challedge my self and then try to confront the given situation _live_.
>
> It's not wise to do so, but that how i operate.
Everyone's learning on the job. (I learned this week th
Στις 1/10/2013 1:43 πμ, ο/η Chris Angelico έγραψε:
On Tue, Oct 1, 2013 at 8:30 AM, Νίκος wrote:
Στις 1/10/2013 1:28 πμ, ο/η Mark Lawrence έγραψε:
On 30/09/2013 23:19, Νίκος wrote:
2 dickheads names Joe & Mark work together to achieve total bullshit!
Well done Beavis & Butthead!
rofl...
On Tue, Oct 1, 2013 at 8:30 AM, Νίκος wrote:
> Στις 1/10/2013 1:28 πμ, ο/η Mark Lawrence έγραψε:
>>
>> On 30/09/2013 23:19, Νίκος wrote:
>>>
>>>
>>> 2 dickheads names Joe & Mark work together to achieve total bullshit!
>>> Well done Beavis & Butthead!
>>> rofl...
>>>
>>
>> Well aside from the fact
Chris Angelico writes:
> Nikos, I sincerely hope that all these problems cause you to go out of
> business. Preferably right now, with just enough maintenance to last
> till the end of your contracts with people. Then start programming
> purely as a hobby, until you actually master the craft.
Th
Στις 1/10/2013 1:29 πμ, ο/η Chris Angelico έγραψε:
On Tue, Oct 1, 2013 at 4:03 AM, Νίκος wrote:
Στις 30/9/2013 5:45 μμ, ο/η Mark Lawrence έγραψε:
Absolutely hilarious. Please give up your web work and Python and get a
job writing scripts for comedians, you'd make a large fortune.
I learn P
Στις 1/10/2013 1:28 πμ, ο/η Mark Lawrence έγραψε:
On 30/09/2013 23:19, Νίκος wrote:
2 dickheads names Joe & Mark work together to achieve total bullshit!
Well done Beavis & Butthead!
rofl...
Well aside from the fact that you've maintained your record by being
inaccurate with 50% of the names
On Tue, Oct 1, 2013 at 4:03 AM, Νίκος wrote:
> Στις 30/9/2013 5:45 μμ, ο/η Mark Lawrence έγραψε:
>> Absolutely hilarious. Please give up your web work and Python and get a
>> job writing scripts for comedians, you'd make a large fortune.
>
>
> I learn Python for personal pleasure because i like p
On 30/09/2013 23:19, Νίκος wrote:
2 dickheads names Joe & Mark work together to achieve total bullshit!
Well done Beavis & Butthead!
rofl...
Well aside from the fact that you've maintained your record by being
inaccurate with 50% of the names that you've quoted, it appears that
we've someth
Στις 1/10/2013 1:14 πμ, ο/η Mark Lawrence έγραψε:
On 30/09/2013 23:08, Νίκος wrote:
Στις 1/10/2013 12:44 πμ, ο/η Joel Goldstick έγραψε:
On Mon, Sep 30, 2013 at 5:34 PM, Νίκος mailto:nikos.gr...@gmail.com>> wrote:
Στις 30/9/2013 11:44 μμ, ο/η Mark Lawrence έγραψε:
On 30/09/2013
1 - 100 of 398 matches
Mail list logo