Daniel Swanson added the comment:
I opened my IDLE (v. 3.2.2 windows xp) and pasted in
print('ここ')
it printed
ここ
just fine.
--
nosy: +weirdink13
___
Python tracker
<http://bugs.python.
Daniel Swanson added the comment:
alt-c does nothing for me
--
___
Python tracker
<http://bugs.python.org/issue4652>
___
___
Python-bugs-list mailing list
Unsub
Daniel Swanson added the comment:
I would say that alt-c is not a problem at all, but, some people might use 'ç'
more that me, (I never have used 'ç' spesificaly)
--
___
Python tracker
<http://bu
Daniel Swanson added the comment:
I agree that the link to the bug tracker should be more obvious (yesterday it
took me almost an hour to find it)
--
nosy: +weirdink13
___
Python tracker
<http://bugs.python.org/issue14
Daniel Swanson added the comment:
ok
--
___
Python tracker
<http://bugs.python.org/issue4652>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.pyth
Daniel Swanson added the comment:
i don't remember
--
___
Python tracker
<http://bugs.python.org/issue14361>
___
___
Python-bugs-list mailing list
Unsubsc
Daniel Swanson added the comment:
You are correct.
I got:
Python 3.1.2 (release31-maint, Dec 9 2011, 20:50:50)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import marshall
Traceback (most rece
Daniel Swanson added the comment:
The previous test was on linux mint 10 (Julia) with python 3.1.2
here is the same test on windows XP with python 3.2.2
Python 3.2.2 (default, Sep 4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on
win32
Type "copyright", "credits" or
Daniel Swanson added the comment:
What about os._exit?
or CTR-ALT-DEL (windows only)
I'd say that socketserver.serveforever is very well named (Hey, if you can't
turn it off then it's serving forever)
--
nosy: +weirdink13
___
Python
Daniel Swanson added the comment:
what about this?
def __init__(...):
...
self.stop = False
while True:
(do stuff)
if self.stop: break
def quit(or whatever it's called): self.stop = True
That would work without the backwards copatability issue
Daniel Swanson added the comment:
Or even better:
def __init__(...):
...
self.stop = False
while not self.stop:
(do stuff)
def quit(or whatever it's called): self.stop = True
--
___
Python tracker
<http://bugs.py
Daniel Swanson added the comment:
I tryed to fix the problem, here is my attemt.
--
Added file: http://bugs.python.org/file25148/tryfixsocketserver.py
___
Python tracker
<http://bugs.python.org/issue13
Daniel Swanson added the comment:
I am using windows and as I recall, it installed a desktop shortcut for me. but
I could be wrong.
--
nosy: +weirdink13
___
Python tracker
<http://bugs.python.org/issue14
Daniel Swanson added the comment:
Never mind. I think I used the start menu to do it myself.
--
___
Python tracker
<http://bugs.python.org/issue14672>
___
___
Daniel Swanson added the comment:
What's the start menu?
hahaha
I think that this issue is pointless, it takes 3 clicks to make a desktop
shortcut (if have a lot of programs on your computer, maybe 4) any Windows user
should know how to
Daniel Swanson added the comment:
I attempted to reproduce the error. I didn't, all I got was
'str' object has no attribute 'decode'
here is the whole test.
Python 3.2.2 (default, Sep 4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on
win32
Type "copyright"
Daniel Swanson added the comment:
what sort of machine has infinite memory?
--
nosy: +weirdink13
___
Python tracker
<http://bugs.python.org/issue14872>
___
___
Daniel Swanson added the comment:
I agree that Such things are most outdated and I think that if any Python users
are still using platforms that old, that they are an extreme minority and also
wonder what on (or off) Earth a Freeze is.
--
nosy: +weirdink13
Daniel Swanson added the comment:
>>> 1a) Update all Windows references to Windows 7 or Vista/7. We can include
>>> XP, but I think Microsoft is dropping support next year.
According to wikipedia Windows XP is the second most popular operating system,
probably better
New submission from Daniel Swanson :
I was looking for information about menus in tkinter and checked the "see also"
list. The second is copyrighted 1999, the third says Python 2.5 and the first
is pretty much just links to the second and third. The forth is a book. It is
my op
Changes by Daniel Swanson :
--
title: tkinter "see also" list is from Python2 -> tkinter documentation "see
also" list in Python3 is from Python2
type: -> enhancement
___
Python tracker
<http
New submission from Daniel Swanson :
The title should be self explanatory.
I needed Drag-and-drop for a project I was working on, (maybe I shouldn't be
refering to it in the past tense as I haven't started yet) so I checked the
documentation for tkinter and found:
3.3.0 b1
tkinter
Daniel Swanson added the comment:
I am also somewhat puzzled by this issue.
The other day I was able to open some .txt files just to see if I could and
they opened just fine.
Just now I tryed to open a .jpg file and I got an error message, but then
again, why would someone save a python file
Daniel Swanson added the comment:
No. When I try to open the file a small window entitled "Specify file encoding"
pops up that says
"The file's encoding is invalid in Python 3.x.
Idle will convert it to UTF-8.
What is the current encoding of the file?"
followed by
Daniel Swanson added the comment:
For that matter, none of the following have docs:
tkinter.colorchooser
tkinter.commondialog
tkinter.filedialog
tkinter.font
tkinter.messagebox
tkinter.simpledialog
tkinter.dnd
Perhaps this should be remidied? One sentence usualy does not describe the use
of an
Changes by Daniel Swanson :
--
title: Tkinter extention modules no documentation -> Tkinter extention modules
have no documentation
___
Python tracker
<http://bugs.python.org/issu
New submission from Daniel Swanson:
I'm dealing with a bunch of nested folders and my imports have gone crazy. When
I try to test one of the lower level scripts that imports one of the higher
level one it gives me an error message. But, when I run the top one, (which
cascadingly imports
Daniel Swanson added the comment:
correcting self.
>>> And now I've got one trying to import something on the same level and it
>>> says it doesn't exist!
Should have been:
And now I've got the top one importing one that's importing one on the s
Changes by Daniel Swanson :
--
status: open -> languishing
___
Python tracker
<http://bugs.python.org/issue15346>
___
___
Python-bugs-list mailing list
Un
Changes by Daniel Swanson :
--
status: languishing -> open
___
Python tracker
<http://bugs.python.org/issue15346>
___
___
Python-bugs-list mailing list
Un
Daniel Swanson added the comment:
We could at least put links to some documentation.
--
___
Python tracker
<http://bugs.python.org/issue15346>
___
___
Python-bug
Daniel Swanson added the comment:
There is documentation of these modules, it's just that it's in the modules
themselves.
--
___
Python tracker
<http://bugs.python.o
32 matches
Mail list logo