On Thu, 05 Oct 2006 02:33:54 +0200, Dustan <[EMAIL PROTECTED]> wrote:
> I don't know if this is because of Tkinter (ie Tk) itself or the
> Windows default way of handling things, but when I create a very long
> menu (my test is shown below), the way it displays is rather sucky; the
> menu stretche
On Mon, 09 Oct 2006 11:08:39 +0200, Claus Tondering
<[EMAIL PROTECTED]> wrote:
> I just solved the problem myself:
>
> I wrote:
>> self.destroy()
>
> Writing "self.master.destroy()" instead does the trick.
As an alternative (which is better IMHO), you may consider specializing
Top
On Tue, 10 Oct 2006 14:29:46 +0200, Edward K. Ream <[EMAIL PROTECTED]>
wrote:
[snip]
> So given x (a string), how does one create a widget whose name is
> '%s.help'
> % x ? This is a can of corn in Tk, but nothing comes to mind looking at
> the
> Tkinter source code.
Use the 'name' keyword
On Tue, 24 Oct 2006 07:48:51 +0200, Hendrik van Rooyen
<[EMAIL PROTECTED]> wrote:
> Sorin Schwimmer wrote:
> Hi All,
>
> Is it possible to have a widget id while it is created?
> Something like this:
>
> Button(root, text='...', command= lambda v=: fn(v)).grid()
>
> and then the function:
>
> d
On Wed, 25 Oct 2006 11:04:57 +0200, Christophe <[EMAIL PROTECTED]>
wrote:
>>> And no modern layout manager available. Only those old school
>>> left/right/up/down pack and anchors are available.
>> huh? when did you last look at Tk? 1994?
> Yesterday. In fact, I could find no mention at all
On Wed, 08 Nov 2006 20:01:08 +0100, <[EMAIL PROTECTED]> wrote:
> Hello,
> I am working on a school project that requires me to get the path of a
> filename for future treatment.
> I've tried getting a file with tkFileDialog.askopenfile.
>
>
>
> import t
On Wed, 08 Nov 2006 21:59:38 +0100, Tim Daneliuk <[EMAIL PROTECTED]>
wrote:
> Sefyroth wrote:
>> Thanks,
>> but I get this error when I try this.
>> UnicodeEncodeError: 'ascii' codec can't encode character u'\xe8' in
>> position 12: ordinal not in range(128)
>> I had encountered it with the
On Thu, 09 Nov 2006 23:51:31 +0100, Dan Lenski <[EMAIL PROTECTED]> wrote:
> One other thing I'm wondering: how exactly does Tkinter work? Is the
> whole Tk toolkit bound up as library of low-level C code, or does
> Tkinter sit on top of a Tcl interpreter?
The latter: there is a tiny C layer allo
On Thu, 09 Nov 2006 22:01:51 +0100, Dan Lenski <[EMAIL PROTECTED]> wrote:
> Tk 8.4 appears to use native Win32 widgets under Cygwin and native
> WinXP.
It seems to depend on the widget type, and on what you call native... For
example, tk menus are definitely the native ones; tk scrollbars are th
On Mon, 13 Nov 2006 16:16:37 +0100, rodmc <[EMAIL PROTECTED]>
wrote:
> Hi,
>
> I have installed Fnorb and everything seems to have gone ok. However I
> keep getting the error message below. This is despite the fact that the
> MS CL c++ preprocessor seems to be in PATH. I can type "cl" and
> alth
On Tue, 14 Nov 2006 13:13:42 +0100, rodmc <[EMAIL PROTECTED]>
wrote:
>> >
>> > Traceback (most recent call last):
>> > File "C:\Python24\Lib\site-packages\Fnorb\script\cpp.py", line 53,
>> in
>> > -toplevel-
>> > raise "No C/C++ pre-processor found in your PATH!"
>> > No C/C++ pre-proces
On Tue, 14 Nov 2006 17:45:52 +0100, Mudcat <[EMAIL PROTECTED]> wrote:
> The problem is I need the ability to change it dynamically. I don't
> want the cursor to be the double_arrow the whole time the mouse hovers
> inside that frame. It's supposed to be a resize arrow when the mouse is
> on the fra
On 29 May 2006 21:13:07 -0700, <[EMAIL PROTECTED]> wrote:
>>> self.table.bind("",self.table.tk.call(self.table._w,'yview','scroll',-5,'units')
>
>> I haven't used Table, but are you sure that what you are calling
>> "self.table" here actually has mouse focus?
>
>> James
>
> Yup, I click on the tab
On 30 May 2006 05:51:04 -0700, <[EMAIL PROTECTED]> wrote:
> Eric,
>
> Thanks, your tip did the trick... Is there someplace where tk.call is
> discussed?
I don't think so. I personnally never find any documentation on it. But
there is not much to say: you can just pa
Hi all,
I just stepped on a thing that I can't explain. Here is some code showing
the problem:
-
class C:
f = None
def __init__(self):
if self.f is not None:
self.x = self.f(0)
else:
self.x = 0
class C1(C):
f = int
class C2(C):
f
On Thu, 01 Jun 2006 13:34:53 +0200, Peter Otten <[EMAIL PROTECTED]> wrote:
> Eric Brunel wrote:
>
>> My actual question is: why does it work in one case and not in the
>> other?
>> As I see it, int is just a function with one parameter, and the lambda
>>
On Thu, 01 Jun 2006 15:07:26 +0200, bruno at modulix <[EMAIL PROTECTED]>
wrote:
> Do yourself a favour : use new-style classes.
> class C(object)
I would if I could: I'm stuck with Python 2.1 for the moment (I should
have mentionned it; sorry for that).
[snip]
>> Basically, I want an optional
On Wed, 07 Jun 2006 17:38:39 GMT, John Salerno <[EMAIL PROTECTED]>
wrote:
[snip]
> But I will agree with you that it is confusing when it says, following
> the top = Tk() line, "Notice that a new blank window has appeared",
> because as you noticed, nothing appears yet. My only guess is that
On 13 Jun 2006 06:14:03 -0700, Dustan <[EMAIL PROTECTED]> wrote:
> I have a Button object that gets replaced by a Label when clicked.
>
> Button(buttonsframe,text=' ',command=c,font=buttonsFont)
> Note that the text is a single space. buttonsFont uses 'Courier New' as
> a family.
>
> When clicked,
On Tue, 27 Jun 2006 14:06:05 +0200, Fuzzyman <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I have some Tkinter buttons that display images. I would like to change
> these to 'active' images when the mouse is over the button.
>
> I see that the button widget can take an 'overrelief' argument in the
>
t[key]
return True
except KeyError:
return False
If I understand correctly, it will be time constant no ??
just the needed time to compute the hash for the key
Eric
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, 04 Jul 2006 05:02:39 +0200, jkuo22 <[EMAIL PROTECTED]> wrote:
> Hi everyone,
>
> Here is my simple Tkinter script:
>
> ## start of entry.py
> from Tkinter import *
> root=Tk()
> e1=Entry(root, width=16)
> e1.pack()
> e2=Entry(root, width=16)
> e2.pack()
> mainloop()
> ## end
>
> First, it
continue
# Get rid of blank line
if line == '':
continue
#do the job
x = eval(line)
NB by default strip() removes leading and trailing characters from the target
string. with whitspace defined as whitespace = '\t\n\x0b\x0c\r '
Eric
--
http://mail.python.org/mailman/listinfo/python-list
(Please quote at least a significant part of the message you're replying
to, or people will have trouble understanding what you're talking about...)
On Thu, 06 Jul 2006 15:42:28 +0200, Kilicaslan Fatih <[EMAIL PROTECTED]>
wrote:
> Dear Diez B. Roggisch,
>
> After clicking a button on the GUI t
(os.getuid())[4]
Eric
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
>Way off-topic for Python, but can someone tell me what encoding was used in
>this web page:
>
>http://www.loppen.dk/side.php?navn=getin
>
>I'm guessing ISO-8859-15, but the page doesn't indicate and it's none of the
>ones available in Safari.
>
>Thanks,
>
>Skip
>
>
ut the database connection is live and works, as I can use the
undocumented db.query() function to do an insert into the database,
and that works fine.
I can run my same Python script on Fedora Core 5 and it works fine.
I'm at wit's end; can anyone suggest what might be wrong, or how to
debug it? (Unfortunately replacing Windows with Linux on the server
machine is not currently a viable option.)
I can provide the "-vv" output if that's useful, but there didn't
appear to be anything unusual in it.
Thanks!
Eric Smith
--
http://mail.python.org/mailman/listinfo/python-list
Carsten Haese <[EMAIL PROTECTED]> writes:
> What happens if you use connect(...) instead of connection(...)?
Then it works! :-)
I could have sworn that I got the use of connection() from published
sample code, but I must be mistaken.
Thanks!
Eric
--
http://mail.python.org/mailman
On Thu, 21 Sep 2006 10:48:55 +0200, rodmc <[EMAIL PROTECTED]>
wrote:
> Can anyone recommend an easy to install COBRA implementation which
> works with Python? I am using Windows XP.
I used to use fnorb (http://sourceforge.net/projects/fnorb), but the
project seems to be dead. It still seems t
On Thu, 21 Sep 2006 15:11:07 +0200, Diez B. Roggisch <[EMAIL PROTECTED]>
wrote:
> AFAIK Fnorb also had license issues - I'm not entirely sure of that, but
> better check it.
The earlier versions seem to have been somewhat proprietary, but the
latest one should be as free as Python is. Extract
On Wed, 27 Sep 2006 15:29:32 +0200, Phil Schmidt
<[EMAIL PROTECTED]> wrote:
> I am making a little Tkinter GUI app that needs to be in several
> languages (english, french, etc.), adjustable at runtime via a menu
> pick to select the language. The only way I can see to change text in
> the menus
On Mon, 02 Oct 2006 14:42:15 +0200, Paolo Pantaleo
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am going on writing my video conference software. I wrote the video
> grab, code/decode, and netwoark (multicast) transport.
>
> I have one thread doing this:
>
> [thread 1]
> while True:
> for some times:
On Wed, 22 Nov 2006 22:59:01 +0100, John Machin <[EMAIL PROTECTED]>
wrote:
[snip]
> So why do you want to strip off accents? The history of communication
> has several examples of significant difference in meaning caused by
> minute differences in punctuation or accents including one of which you
> > "No programmer who learned Lisp ever gave up before he learned Lisp."That
> > would be the obvious retort, but my observation was empirical, so I
> am afraid you need numbers, not word games.
>
> You seem awfully hostile, by the way. Won't that make it harder to
> conduct an intelligent excha
copy.
Any suggestions greatly appreciated.
Cheers,
Eric Carlson
--
http://mail.python.org/mailman/listinfo/python-list
es me any array with nr rows and nc columns. Using Block I think I
would use:
f_o=open('junk.bin','rb')
x = View('d', Block(f_o.read()))
Okay, so now how can I use this? Is this like an array type so that
x = reshape(x,(nr,nc))
makes sense?
Regards,
Eric
--
http://mail.python.org/mailman/listinfo/python-list
test
_
Get the latest Windows Live Messenger 8.1 Beta version. Join now.
http://ideas.live.com
--
http://mail.python.org/mailman/listinfo/python-list
rich murphy wrote:
>So, I assumed "the current directory" is C:\Python25 which did not
>work. Then I placed the fibo.py file in C: director. That did not work
>either. What directory does it mean then?
>
OK, forgive me for using 2.4... Can you import "sys"? Assuming you've
got python_script.py
On Wed, 20 Dec 2006 18:37:10 +0100, mdmdmd <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I wish to collect 4 files from a user. So I have decided to use
> tkFileDialog askopenfilename. My problem is that after a few file
> selections the root window is destroyed (the whole program just
> dissapp
On Thu, 21 Dec 2006 13:33:51 +0100, <[EMAIL PROTECTED]> wrote:
> Hello,
> I got a number 19968:
>
> 1. how can I change it to the hex form 0x4e00,
'0x%x' % 19968
> 2. and how can I change 0x4e00 to a python unicode character u"\u4e00"?
unichr(19968)
> thank you!
HTH
--
python -c "print ''.jo
On Thu, 21 Dec 2006 22:37:37 +0100, James Stroud <[EMAIL PROTECTED]>
wrote:
> Eric Brunel wrote:
>> BTW, why do you create a sub-class of Frame for your application? Why
>> not create a sub-class of Tk instead?
>>
>
> The short answer is that inhereting f
Ben Sizer wrote:
>I've installed several different versions of Python across several
>different versions of MS Windows, and not a single time was the Python
>directory or the Scripts subdirectory added to the PATH environment
>variable. Every time, I've had to go through and add this by hand, to
>
the double colon? What does it do?
m.append(l[i::rows])
Thanks,
Eric
_
Type your favorite song. Get a customized station. Try MSN Radio powered
by Pandora. http://radio.msn.com/?icid=T002MSN03A07001
--
http://mail.
>From: Paul Watson <[EMAIL PROTECTED]>
>Probably most helpful to you is:
>
>http://developer.mozilla.org/es4/proposals/slice_syntax.html
Oh, the step. Okay, thanks ;)
Eric
_
Communicate instantly! Use your Hotma
On 23 Jan 2006 11:28:37 -0800, Tuvas <[EMAIL PROTECTED]> wrote:
> I am building a tkinter program. A part of this program is to read data
> from an incoming interface, and depending on the data, will display a
> bit of text on the tk dialog, it decodes this data, so to speak. If one
> command is s
On 24 Jan 2006 12:37:01 -0800, Tuvas <[EMAIL PROTECTED]> wrote:
> I thought I mentioned that I'm running in linux, and yes, there are
> threads involved. I just don't know why on one machine that it would
> run so differently than another.
The only secure way I found to make Tkinter mix with threa
On Thu, 26 Jan 2006 17:32:32 +, Steve Holden <[EMAIL PROTECTED]>
wrote:
> gregarican wrote:
>> I have a Python UDP listener socket that waits for incoming data. The
>> socket runs as an endless loop. I would like to pop the incoming data
>> into an existing Tkinter app that I have created. W
On Mon, 30 Jan 2006 15:20:50 -0800, James Stroud <[EMAIL PROTECTED]> wrote:
> Hello All,
>
> I'm wondering if there is something that already exists that can take
> marked up text in some format (hopefully reStructuredText or HTML) and
> can convert it into something that can be displayed with
pjpeg, text/plain,
> text/html, */*',
> 'Content-Type':'image/gif'
> }
Could it be Host? It should be "gatewaybeta.fedex.com" AFAIKT
--eric
--
http://mail.python.org/mailman/listinfo/python-list
Don't forget to substitute the actual Content-length for %d!
--eric
On 1 feb 2006, at 17:34, Gregory Piñero wrote:
> Correction:
> ---
> --
> POST /GatewayDC HTTP/1.0
> Referer: YourCompan
Yong,
Are you sure you indent with the same characters and there is no
non-print code there?
--eric
On 1 feb 2006, at 17:36, Yong Wang wrote:
> Hi,
>I have a data set like row = [[1,2,3,4,5], [6,7,8,9,10],
> [11,12,13,14,15]]
>when I use loop to print out data, I got comp
self.child = B(self)
class B(object):
def __init__(self, parent):
self.do_stuff(parent)
def do_stuff(self, parent):
self.parent = parent
if self.parent.__class__.__name__ == 'A':
print "I'm a child of an A!"
On Mon, 6 Feb 2006 20:11:28 -0700, Bob Greschke <[EMAIL PROTECTED]> wrote:
> Hi!
>
> I want to grab the contents of a Text widget when the frame it's on gets
> destroyed. I tried TextWidget.bind(""... , but the widget is
> gone
> before the call gets made, and I'd really hate to do something wi
On Mon, 06 Feb 2006 19:32:52 -0800, James Stroud <[EMAIL PROTECTED]> wrote:
> If TextWidgetsFrame inherets from frame, you can override the destroy()
> method which gets called when the parent gets destroyed.
Unfortunately, it doesn't get called. Everything actually happens at tk
level, where
> Well, it turns out to be the best way to invert a string, IMO. The
> reversed() feature returns a reversed object... not a reversed string.
> In short, I have to fool with it again _after_ it has been inverted. The
> slicing takes care of the job right away and gives me what I want... no
> Comput
me file, re-read with a Ruby script needs a
str.unpack("Z32dIc").
So, i don't know why i need to pad the format string in Python. Any
clue?
BTW: how to get rid of all this stuff after the \0 in the first field
in Python? (Ruby has Z and A, but it seems that the Python 's'
sp
mz.rstrip('\0')
>>> nom
'Dupont\x00\x80\xbf\xff\xf70\x8f\xe0u\xa4\x00\x00.8\xfe\xfe\xfe\xff\x80\x80\x80\x80'
--
Eric Jacoboni, ne il y a 1444080064 secondes
--
http://mail.python.org/mailman/listinfo/python-list
w=enum(("sunday", 0), ("monday", 1),
> ("start_of_work_week", 1), ... ("friday", 5),
> ("end_of_work_week", 5)...)
if enum would handle a dict as an input parameter by replacing it with
the dict's iteritems() this is equivalent.
--eric
--
http://mail.python.org/mailman/listinfo/python-list
tion but convert the tabs to a specified space number
Eric
--
> Le lecteur c'est Outlook express (ceci explique sans doute celà)
Outlook Express, c'est fait pour demander comment configurer Emacs
pour lire le courrier et les news.
-+- GK in Guide du linuxien pervers - "D
Hi all,
The app I'm working on keeps getting new transforms and I'm tired of
adding them by hand. So here it goes:
Can anyone provide me with clues/examples/references on how to create a
plug-in framework?
tx,
--eric
--
http://mail.python.org/mailman/listinfo/python-list
On Sat, 28 May 2005 18:21:46 +0200, pavel.kosina <[EMAIL PROTECTED]> wrote:
> Fredrik Lundh napsal(a):
>> when you add an item to the canvas, it's part of the canvas
>> until you remove it. if performance drops, it's usually because
>> you keep adding new items without removing the old ones.
>>
>
get)
I recommend this be adopted as a naming standard for Python methods:
"The method name should have a sexy connotation"
Eric Pederson
http://www.songzilla.blogspot.com
:::
domainNot="@something.com"
domainIs=domainNot.replac
On Thu, 09 Jun 2005 02:22:08 +0200, Riccardo Galli <[EMAIL PROTECTED]> wrote:
> Using tkinter doesn't need downloading and installing only in Windows.
> In *nix is not so common to have tcl/tk installed (and probably in Mac too)
>
> GUI cross platform need external support, in a OS or in another.
On Thu, 31 May 2007 19:45:04 +0200, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> I am trying to figure out how to stack two widgets in a frame
> vertically so that they both expand horizontally and during vertical
> expansion, the top one sticks to the top of the frame and the bottom
> one con
On Tue, 05 Jun 2007 18:18:51 +0200, <[EMAIL PROTECTED]> wrote:
> Hi everybody.
>
> I have this code snippet that shows a window without a titlebar (using
> overrideredirect) and two buttons on it: one quits and the other one
> brings up a simple tkMessageBox.
> On Windows (any flavour) the tkMessa
On Wed, 06 Jun 2007 14:26:12 +0200, <[EMAIL PROTECTED]> wrote:
>> As an aside, having a window with overrideredirect(1) creating "normal"
>> windows such as the one created via tkMessageBox.showinfo is asking for
>> problems. What are you trying to do here?
>
> I just need a window without the titl
On Thu, 07 Jun 2007 09:04:24 +0200, <[EMAIL PROTECTED]> wrote:
[snip]
> I can't believe there isn't an easier way to make a kiosk application
> without titlebar.
That's not the problem: there *is* an easy way, and you found it:
overrideredirect(1). But now you're trying to mix windows ignored by
On Mon, 11 Jun 2007 14:23:48 +0200, exhuma.twn <[EMAIL PROTECTED]> wrote:
> As many might know, windows allows to copy an image into the clipboard
> by pressing the "Print Screen" button on the keyboard. Is it possible
> to paste such an image from the clipboard into a "Text" widget in
> Tkinter? H
On Tue, 12 Jun 2007 19:32:38 +0200, reverse_gear <[EMAIL PROTECTED]>
wrote:
> hi,
> Does Tkinter has support for tamil/Indian Languages??
> I tried this code
> it is able to print both tamil and german text on console.. but on
> Tkinter Label it is printing only the german code
> Plz help
> from
Is there an easy way to pass arguments to a handler class that is used
by the standard TCPServer?
normally --> srvr =SocketServer.TCPServer(('',port_num), TCPHandlerClass)
I'd like to be able to: srvr =SocketServer.TCPServer(('',port_num),
TCPHandlerClass, (arg1,arg2))
And have arg1, arg2 avai
Great -- thanks! (and also to J. Ezequiel).
Mark T wrote:
"Eric Spaulding" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Is there an easy way to pass arguments to a handler class that is used by
the standard TCPServer?
normally --> srvr =SocketServer.TCP
seems to be the only package that
has not worked correctly (scipy, numpy, matplotlib, PyOpengl, PyODE, and
wxpython2.8 demos all work)
Any suggestions would be greatly appreciated.
Regards,
Eric Carlson
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, 28 Jun 2007 07:45:08 +0200, Rajendran Appavu <[EMAIL PROTECTED]>
wrote:
> When I am done with a widget that is packed in a Frame, is it safe to
> call destroy() method on the widget after calling its pack_forget() or
> grid_forget() method?
Since I do that all the time, I'd say yes... D
On Wed, 04 Jul 2007 21:51:34 +0200, O.R.Senthil Kumaran
<[EMAIL PROTECTED]> wrote:
> Following is a tk code, which will display a checkbutton, and when
> checkbox is
> enabled, it will show the below present Label.
>
> What I was trying is, when checkbox is enabled the Label should be shown
>
On Mon, 09 Jul 2007 23:08:20 +0200, Kevin Walzer <[EMAIL PROTECTED]>
wrote:
> I've spent some time playing with both, and while wxPython is nice,
> Tkinter just seems to fit my head better, and with appropriate selection
> of widgets and interface design, seems to yield up perfectly usable
On Apr 28, 8:44 am, War Office <[EMAIL PROTECTED]> wrote:
> On 25 abr, 21:33, "Bill Habr" <[EMAIL PROTECTED]> wrote:
>
>
>
> > <[EMAIL PROTECTED]> wrote in message
>
> >news:[EMAIL PROTECTED]
>
> > > Cal Tech is the ELITE of ELITE in physics.
>
> > > If Feynman were alive, he would point his finger
On Apr 24, 6:13 pm, [EMAIL PROTECTED] wrote:
> Cal Tech is the ELITE of ELITE in physics.
"INN World Report interviewed Dr. Crockett Grabbe - professor of
physics at the University of Iowa - regarding his thoughts on the
'collapses' of WTC1, WTC2, & WTC7. In this interview he lists numerous
reason
On Apr 28, 9:30 am, "Michael A. Terrell" <[EMAIL PROTECTED]>
wrote:
> Eric Gisse wrote:
>
> > On Apr 24, 6:13 pm, [EMAIL PROTECTED] wrote:
> > > Cal Tech is the ELITE of ELITE in physics.
>
> > "INN World Report interviewed Dr. Crockett Grabbe -
On May 2, 7:10 pm, Midex <[EMAIL PROTECTED]> wrote:
[...]
I guess the explanation that people were looking at the building and
watching its' structure deform is too rational.
--
http://mail.python.org/mailman/listinfo/python-list
On May 2, 10:14 pm, malibu <[EMAIL PROTECTED]> wrote:
> On May 2, 9:46 pm, Eric Gisse <[EMAIL PROTECTED]> wrote:
>
> > On May 2, 7:10 pm, Midex <[EMAIL PROTECTED]> wrote:
>
> > [...]
>
> > I guess the explanation that people were looking at the bu
On Fri, 04 May 2007 05:26:56 +0200, <[EMAIL PROTECTED]> wrote:
> I will give a simplified example of the problem at hand --
>
> I have a case in which I have two listboxes - listbox1 and listbox2,
> if I click on an item in listbox1 the item gets highlighted as
> expected. Now if I click on an ite
On Wed, 09 May 2007 18:37:32 +0200, <[EMAIL PROTECTED]> wrote:
> Hi,
> I have developed a GUI using tkinter (grid geometory manager).
> The structure is a top frame containing multiple subframes. Each
> subframe has a combination of widgets like(Entry, label,
> button,listboxes). The subframes are
On Sun, 13 May 2007 21:10:46 +0200, Stefan Behnel
<[EMAIL PROTECTED]> wrote:
[snip]
> Now, I am not a strong supporter (most public code will use English
> identifiers anyway)
How will you guarantee that? I'm quite convinced that most of the public
code today started its life as private code e
On Sun, 13 May 2007 23:55:11 +0200, Bruno Desthuilliers
<[EMAIL PROTECTED]> wrote:
> Martin v. Löwis a écrit :
>> PEP 1 specifies that PEP authors need to collect feedback from the
>> community. As the author of PEP 3131, I'd like to encourage comments
>> to the PEP included below, either here (
On Mon, 14 May 2007 11:00:29 +0200, Stefan Behnel
<[EMAIL PROTECTED]> wrote:
> Eric Brunel wrote:
>> On Sun, 13 May 2007 21:10:46 +0200, Stefan Behnel
>> <[EMAIL PROTECTED]> wrote:
>> [snip]
>>> Now, I am not a strong supporter (most public co
On Mon, 14 May 2007 12:17:36 +0200, Stefan Behnel
<[EMAIL PROTECTED]> wrote:
> Eric Brunel wrote:
>> On Mon, 14 May 2007 11:00:29 +0200, Stefan Behnel
>>> Any chance there are still kanji-enabled programmes around that were
>>> not hit
>>> by the bomb
On Mon, 14 May 2007 18:30:42 +0200, <[EMAIL PROTECTED]> wrote:
[snip]
> Can a discussion about support for non-english identifiers (1)
> conducted in a group where 99.9% of the posters are fluent
> speakers of english (2), have any chance of being objective
> or fair?
Agreed.
> Although probably
On Tue, 15 May 2007 07:15:21 +0200, ZeD <[EMAIL PROTECTED]> wrote:
> Neil Hodgson wrote:
>
>> Ada 2005 allows Unicode identifiers and even includes the constant
>> '?' in Ada.Numerics.
^^^
> this. is. cool.
Yeah, right... The problems begin...
Joke aside, this just means that I won't eve
On Tue, 15 May 2007 09:38:38 +0200, Duncan Booth
<[EMAIL PROTECTED]> wrote:
> Recently there has been quite a bit of publicity about the One Laptop Per
> Child project. The XO laptop is just beginning rollout to children and
> provides two main programming environments: Squeak and Python. It is a
On Tue, 15 May 2007 11:25:50 +0200, Thorsten Kampe
<[EMAIL PROTECTED]> wrote:
> * Eric Brunel (Tue, 15 May 2007 10:52:21 +0200)
>> On Tue, 15 May 2007 09:38:38 +0200, Duncan Booth
>> <[EMAIL PROTECTED]> wrote:
>> > Recently there has been quite a bit of pub
On Tue, 15 May 2007 14:14:33 +0200, Stefan Behnel
<[EMAIL PROTECTED]> wrote:
> René Fleschenberg wrote:
>> Please try to understand that the fact that certain bad practices are
>> possible today is no valid argument for introducing support for more of
>> them!
>
> You're not trying to suggest tha
On Tue, 15 May 2007 15:57:32 +0200, Stefan Behnel
<[EMAIL PROTECTED]> wrote:
> George Sakkis wrote:
>> After 175 replies (and counting), the only thing that is clear is the
>> controversy around this PEP. Most people are very strong for or
>> against it, with little middle ground in between. I'm
On Tue, 15 May 2007 17:35:11 +0200, Stefan Behnel
<[EMAIL PROTECTED]> wrote:
> Eric Brunel wrote:
>> On Tue, 15 May 2007 15:57:32 +0200, Stefan Behnel
>>> In-house developers are rather for this PEP as they see the advantage
>>> of
>>> expressing
On Tue, 15 May 2007 21:07:30 +0200, Pierre Hanser
<[EMAIL PROTECTED]> wrote:
> hello
>
> i work for a large phone maker, and for a long time
> we thought, very arrogantly, our phones would be ok
> for the whole world.
>
> After all, using a phone uses so little words, and
> some of them where eve
On Wed, 16 May 2007 02:14:58 +0200, Steven D'Aprano
<[EMAIL PROTECTED]> wrote:
> On Tue, 15 May 2007 09:09:30 +0200, Eric Brunel wrote:
>
>> Joke aside, this just means that I won't ever be able to program math in
>> ADA, because I have absolutely no idea on h
On Wed, 16 May 2007 12:22:01 +0200, Neil Hodgson
<[EMAIL PROTECTED]> wrote:
> Eric Brunel:
>
>> ... there is no keyboard *on Earth* allowing to type *all* characters
>> in the whole Unicode set.
>
> My keyboard in conjunction with the operating system (US Eng
On Wed, 16 May 2007 15:46:10 +0200, Neil Hodgson
<[EMAIL PROTECTED]> wrote:
> Eric Brunel:
>
>> Funny you talk about Japanese, a language I'm a bit familiar with and
>> for which I actually know some input methods. The thing is, these only
>> work if you
On Wed, 16 May 2007 16:29:27 +0200, Neil Hodgson
<[EMAIL PROTECTED]> wrote:
> Eric Brunel:
>
>> Have you ever tried to enter anything more than 2 or 3 characters like
>> that?
>
> No, only for examples. Lengthy texts are either already available
> di
On Wed, 16 May 2007 17:14:32 +0200, Gregor Horvath <[EMAIL PROTECTED]>
wrote:
> Eric Brunel schrieb:
>
>> Highly improbable in the general context. If I stumble on a source code
>> in Chinese, Russian or Hebrew, I wouldn't be able to figure out a
>> singl
On Thu, 17 May 2007 09:30:57 +0200, Hendrik van Rooyen
<[EMAIL PROTECTED]> wrote:
> "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
>> En Wed, 16 May 2007 03:22:17 -0300, Hendrik van Rooyen
>>> I have never seen this working in Tkinter, unless the button was
>>> pressed
>>> on the
>>> widget
>>
401 - 500 of 1015 matches
Mail list logo