[ANN]VTD-XML 2.10

2011-02-26 Thread Jimmy
VTD-XML 2.10 is now released. It can be downloaded at https://sourceforge.net/projects/vtd-xml/files/vtd-xml/ximpleware_2.10/. This release includes a number of new features and enhancement. * The core API of VTD-XML has been expanded. Users can now perform cut/paste/insert on an empty element. *

wxpython:how to minimize to taskbar

2007-08-28 Thread Jimmy
I'm kinda newbie to python and wxPython. Now I'm confronting a thorny problem: how can I make my program minimize to the taskbar represented as an ico, and when there is some message from network coming, it will pop out? -- http://mail.python.org/mailman/listinfo/python-list

wxPython unexpected exit

2007-09-07 Thread Jimmy
Hi, wxPython is cool and easy to use, But I ran into a problem recently when I try to write a GUI. The thing is I want to periodically update the content of StatixText object, so after create them, I pack them into a list...the problem comes when I later try to extract them from the list! I don't k

Re: wxPython unexpected exit

2007-09-08 Thread Jimmy
On Sep 7, 9:42 pm, [EMAIL PROTECTED] wrote: > On Sep 7, 3:10 am, Jimmy <[EMAIL PROTECTED]> wrote: > > > > > Hi, wxPython is cool and easy to use, But I ran into a problem > > recently when I try to write a GUI. > > The thing is I want to periodically update the

wxpython automate progress bar

2007-09-08 Thread Jimmy
Hi, I want a progress bar to increase automatically, so I wrote code like this: current = 0 while True: if current == 100: current = 0 self._gauge.SetValue(current) time.sleep(0.1

(wxPython) icon on panel

2007-09-16 Thread Jimmy
hi,all! have you used 'dictionary' of linux, the program that rests on the panel as an icon, and when you click on the icon, it will display a window and do something. So i'm wondering how to achieve this. I guess it's a dialog window, right? but the crucial part is how to minimize the program to a

(curses) issue about inch()

2007-09-16 Thread Jimmy
hi, all I attempt to use the function inch() to get the character at the current position, and compare it with a particular character like : if screen.inch(x,y) == 'F' but this method doesn't seem work, can anyone tell me the reason and how to corrent it thanks -- http://mail.python.org/mailman/l

Re: (curses) issue about inch()

2007-09-16 Thread Jimmy
On Sep 17, 12:07 am, Steve Holden <[EMAIL PROTECTED]> wrote: > Jimmy wrote: > > hi, all > > I attempt to use the function inch() to get the character at the > > current position, and compare it with a particular character like : > > if screen.inch(x,y) == 'F&

Re: (curses) issue about inch()

2007-09-16 Thread Jimmy
On Sep 17, 2:25 am, Steve Holden <[EMAIL PROTECTED]> wrote: > Jimmy wrote: > > On Sep 17, 12:07 am, Steve Holden <[EMAIL PROTECTED]> wrote: > >> Jimmy wrote: > >>> hi, all > >>> I attempt to use the function inch() to get the characte

Re: Problem with custom events in wxpython

2008-05-12 Thread Jimmy
On May 11, 11:27 pm, "Frank Niessink" <[EMAIL PROTECTED]> wrote: > Hi Jimmy, > > 2008/5/11 Jimmy <[EMAIL PROTECTED]>: > > > hi, all > > > I'm having a problem with creating custom events in wxpython. > > > I have a class A handling som

how to get information of a running prog in python

2008-05-12 Thread Jimmy
Well, i know it may be a little non-python thing, however, I can think of no place better to post this question :) can anyone tell me, in python, how to obtain some information of a running program? paticularly, if i am playing some music in audacious or other media player, how can i get the the n

Re: how to get information of a running prog in python

2008-05-12 Thread Jimmy
On May 13, 10:36 am, "Dan Upton" <[EMAIL PROTECTED]> wrote: > On Mon, May 12, 2008 at 10:19 PM, Jimmy <[EMAIL PROTECTED]> wrote: > > Well, i know it may be a little non-python thing, however, I can think > > of no place better to post this question :) > &g

Re: how to get information of a running prog in python

2008-05-13 Thread Jimmy
On May 13, 11:18 am, Ivan Illarionov <[EMAIL PROTECTED]> wrote: > On Mon, 12 May 2008 19:19:05 -0700, Jimmy wrote: > > Well, i know it may be a little non-python thing, however, I can think > > of no place better to post this question :) > > > can anyone tell me,

Re: how to get information of a running prog in python

2008-05-13 Thread Jimmy
On May 13, 4:41 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Tue, 13 May 2008 01:22:52 -0300, Ivan Illarionov > <[EMAIL PROTECTED]> escribió: > > > > > On Mon, 12 May 2008 20:29:46 -0700, George Sakkis wrote: > >>> >

create window on panel

2008-05-14 Thread Jimmy
Hi, all I have been trying to use wxPython to design a GUI that will be displayed on the panel on the top of desktop. that is when the program starts, it will dwell on the panel to display some dynamic information. can anyone tell me in wxPython how to do this? thanks! -- http://mail.python.org/m

Re: create window on panel

2008-05-15 Thread Jimmy
On May 15, 5:54 pm, Laszlo Nagy <[EMAIL PROTECTED]> wrote: > Jimmy wrote: > > Hi, all > > > I have been trying to use wxPython to design a GUI that will be > > displayed on the panel on the top of desktop. that is when the > > program starts, it will dwell

Re: create window on panel

2008-05-15 Thread Jimmy
On May 15, 7:45 pm, Laszlo Nagy <[EMAIL PROTECTED]> wrote: > > Thanks for your reply! > > > I am using Linux+gnome. Actually, what I want is simply a text-region > > on the panel > > and display some dynamic information on it. Is it hard to do it ? > > Google is your friend! I searched for "gnome p

can python do some kernel stuff?

2008-05-22 Thread Jimmy
Hi to all python now has grown to a versatile language that can accomplish tasks for many different purposes. However, AFAIK, little is known about its ability of kernel coding. So I am wondering if python can do some kernel coding that used to be the private garden of C/C++. For example, can pyt

Re: can python do some kernel stuff?

2008-05-23 Thread Jimmy
On May 23, 3:05 pm, Andrew Lee <[EMAIL PROTECTED]> wrote: > Jimmy wrote: > > Hi to all > > > python now has grown to a versatile language that can > > accomplish tasks for many different purposes. However, > > AFAIK, little is known about its ability of kerne

Re: can python do some kernel stuff?

2008-05-23 Thread Jimmy
On May 23, 5:53 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Jimmy schrieb: > > > On May 23, 3:05 pm, Andrew Lee <[EMAIL PROTECTED]> wrote: > >> Jimmy wrote: > >>> Hi to all > >>> python now has grown to a versatile l

Re: can python do some kernel stuff?

2008-05-23 Thread Jimmy
On May 23, 11:14 pm, Jimmy <[EMAIL PROTECTED]> wrote: > On May 23, 5:53 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > > > > Jimmy schrieb: > > > > On May 23, 3:05 pm, Andrew Lee <[EMAIL PROTECTED]> wrote: > > >> Jimm

Re: can python do some kernel stuff?

2008-05-23 Thread Jimmy
On May 24, 12:34 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Jimmy schrieb: > > > > > On May 23, 11:14 pm, Jimmy <[EMAIL PROTECTED]> wrote: > >> On May 23, 5:53 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > >

the scaling of pics in pygame

2008-04-01 Thread Jimmy
Hi, everyone I am using Pygame to write a small program. I tried to load a .jpg picture into the screen, however, the size of the pic doesn't fit into the window properly. Can anyone tell me how to scale the picture into the window? thanks! -- http://mail.python.org/mailman/listinfo/python-list

Problem with custom events in wxpython

2008-05-11 Thread Jimmy
hi, all I'm having a problem with creating custom events in wxpython. I have a class A handling some data processing work and another class B of GUI matter. I need GUI to display information when data in A is updated. I know cutom events in wxpython may work. But I found no material paricularly h

Wrong reference

2010-06-27 Thread Jimmy
Add references to: "PresentationCore" and "PresentationFramework" for the System.Windows and System.Windows.Controls etc namespace. Ian Hobson wrote: Where is StackPanel in IronPython / .Net 4? 27-Jun-10 Hi All, According to this page http://msdn.microsoft.com/en-us/library/system.windows.c

Correction

2010-06-27 Thread Jimmy
It should be "PresentationCore" and "PresentationFramework." For some reason, that first part got deleted in my reply. Jimmy Cao wrote: Wrong reference 27-Jun-10 Add references to: "PresentationCore" and "PresentationFramework" for the System.Windows a

PresentationCore got deleted again

2010-06-27 Thread Jimmy
For some reason, "PresentationCore" doesn't show up... PresentationCore PresentationCore PresentationCore PresentationCore PresentationCore Jimmy Cao wrote: Wrong reference 27-Jun-10 Add references to: "PresentationCore" and "PresentationFramewo

[ANN]VTD-XML 2.9

2010-08-22 Thread Jimmy
VTD-XML 2.9, the next generation XML Processing API for SOA and Cloud computing, has been released. Please visit https://sourceforge.net/projects/vtd-xml/files/ to download the latest version. * Strict Conformance # VTD-XML now fully conforms to XML namespace 1.0 spec * Performance Improv

mrjob v0.2.7 released

2011-07-12 Thread Jimmy Retzlaff
What is mrjob? - mrjob is a Python package that helps you write and run Hadoop Streaming jobs. mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows you to buy time on a Hadoop cluster on an hourly basis. It also works with your own Hadoop cluster. Some impor

mrjob v0.2.4 released

2011-03-09 Thread Jimmy Retzlaff
What is mrjob? --- mrjob is a Python package that helps you write and run Hadoop Streaming jobs. mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows you to buy time on a Hadoop cluster on an hourly basis. It also works with your own Hadoop cluster. Som

mrjob v0.2.5 released

2011-04-30 Thread Jimmy Retzlaff
What is mrjob? --- mrjob is a Python package that helps you write and run Hadoop Streaming jobs. mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows you to buy time on a Hadoop cluster on an hourly basis. It also works with your own Hadoop cluster. Som

Subject: mrjob v0.2.6 released

2011-05-24 Thread Jimmy Retzlaff
What is mrjob? - mrjob is a Python package that helps you write and run Hadoop Streaming jobs. mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows you to buy time on a Hadoop cluster on an hourly basis. It also works with your own Hadoop cluster. Some impor

Re: Unable to make ironpython run in browser with silverlight

2011-05-25 Thread Jimmy Schementi
You need to run it from a web-server; it doesn't work when running from file:// due to Silverlight's security sandbox. Read the comments on my blog-post, it mentions the web-server there. -- http://mail.python.org/mailman/listinfo/python-list

Distributing multiple packages with on setup.py

2017-09-29 Thread Jimmy Thrasibule
roj.common`` and ``myproj.subpackage1``. Regards, Jimmy -- https://mail.python.org/mailman/listinfo/python-list

Re: Distributing multiple packages with on setup.py

2017-10-02 Thread Jimmy Thrasibule
> ], > 'entry_points': { > 'console_scripts': [ > 'svcd = cs.app.svcd:main' > ], > }, > } I think I will head this direction. And with `setup.cfg <https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files>`_, it is quite easy to keep the package's metadata in a standard way and feed this to setup(). Regards, Jimmy -- https://mail.python.org/mailman/listinfo/python-list

Re: Distributing multiple packages with on setup.py

2017-10-02 Thread Jimmy Thrasibule
I think I will head this direction. And with `setup.cfg <https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files>`_, it is quite easy to keep the package's metadata in a standard way and feed this to setup(). Regards, Jimmy -- https://mail

Re: more pythonic way

2019-02-11 Thread Jimmy Girardet
The first one is used very often. Less verbose Le 11 févr. 2019 à 20:41, à 20:41, Felix Lazaro Carbonell a écrit: > > >Hello to everyone: > >Could you please tell me wich way of writing this method is more >pythonic: > > > >.. > >def find_monthly_expenses(month=None, year=None): > >

about types.new_class and module

2019-03-04 Thread Jimmy Girardet
e sure not to override an existing class somewhere in the namespace which is already 'types.MyNewclass'. but how to check it if it's not in types ? To be clear : make_dataclass('Bla', {}) should raise an error if something named 'types.Bla' already exists. I hope I'm clear enough. Jimmy -- https://mail.python.org/mailman/listinfo/python-list

Re: about types.new_class and module

2019-03-04 Thread Jimmy Girardet
Thank you for the clarification. I thought everything was bounded to anything. Shouldn't the name be changed from `types.A` to `unbound.A` to be less confusing ? Le 04/03/2019 à 20:31, MRAB a écrit : 'new_class' creates a new class with the given name and returns a reference to it. The c

RE: Py2Exe + kinterbasdb

2005-10-03 Thread Jimmy Retzlaff
adding kinterbasdb to the py2exe packages options as shown below: setup( console=["Report01.py"], options={"py2exe": {"packages": ["kinterbasdb"]}} ) Jimmy -- http://mail.python.org/mailman/listinfo/python-list

py2exe has a new maintainer

2005-10-04 Thread Jimmy Retzlaff
Thomas for the great work he's done with py2exe over the years. He's set a very high standard for me to try and maintain. Jimmy -- http://mail.python.org/mailman/listinfo/python-list

py2exe 0.6.3 released

2005-10-06 Thread Jimmy Retzlaff
supported. Changes in 0.6.3: * First release assembled by py2exe's new maintainer, Jimmy Retzlaff. Code changes in this release are from Thomas Heller and Gordon Scott. * The dll-excludes option is now available on the command line. It was only possible to specify that i

RE: py2exe and pyGTK (was "Error")

2005-11-14 Thread Jimmy Retzlaff
yc", line 113, in ? > AttributeError: 'module' object has no attribute 'Font' > > does anybody knows how to solve it? Does http://www.anti-particle.com/py2exe.shtml help? Jimmy -- http://mail.python.org/mailman/listinfo/python-list

RE: Open Folder in Desktop

2005-01-25 Thread Jimmy Retzlaff
2com.shell import shellcon, shell path = shell.SHGetFolderPath(0, shellcon.CSIDL_MYPICTURES, 0, 0) os.startfile(path) Google for CSIDL to find the constants to use for other special folders. Jimmy -- http://mail.python.org/mailman/listinfo/python-list

RE: bad generator performance

2005-02-06 Thread Jimmy Retzlaff
our data also - things like how deep vs. wide your tree is. Jimmy import os import time class Node: def __init__(self, pathname): self.thisIsAFolder = os.path.isdir(pathname) self.children = [] if self.isFolder(): for filename in os.listdir(p

RE: string methods (warning, newbie)

2005-02-26 Thread Jimmy Retzlaff
atles - help - 03 - Ticket to ride') 'TheBeatleshelpTickettoride' Jimmy -- http://mail.python.org/mailman/listinfo/python-list

RE: Audio interviews of Guido or other Python advocates?

2004-12-04 Thread Jimmy Retzlaff
h a few folks in it at: http://www.ibiblio.org/obp/pyBiblio/pythonvideo.php Jimmy -- http://mail.python.org/mailman/listinfo/python-list

RE: feature suggestion

2004-12-24 Thread Jimmy Retzlaff
run PyChecker on typo.py it will issue the following warning: typo.py:5: No global (a) found Jimmy -- http://mail.python.org/mailman/listinfo/python-list

RE: Python 2.4 killing commercial Windows Python development ?

2005-04-12 Thread Jimmy Retzlaff
ules at that point since I'll be in the code anyway. Before I started doing this, the version of Python and the various extension modules in use on my server was a couple of years older than the version on my development machine because I almost never upgraded for fear of breaking several p

RE: py2exe - create one EXE

2005-04-15 Thread Jimmy Retzlaff
checked it was only for Python 2.3. It's on his page at: http://homepage.hispeed.ch/py430/python/ Jimmy -- http://mail.python.org/mailman/listinfo/python-list

RE: MessageBox ONOK?

2005-04-19 Thread Jimmy Retzlaff
sed I clicked OK when the dialog appeared. There are also constants for IDCANCEL, IDYES, IDNO, etc. which can be useful if you are using other buttons (e.g., win32ui.MessageBox('Do it?', None, win32con.MB_YESNO)). Jimmy -- http://mail.python.org/mailman/listinfo/python-list

mrjob v0.3.0 released

2011-12-08 Thread Jimmy Retzlaff
What is mrjob? --- mrjob is a Python package that helps you write and run Hadoop Streaming jobs. mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows you to buy time on a Hadoop cluster on an hourly basis. It also works with your own Hadoop cluster. Some

py2exe 0.6.6 released

2006-12-31 Thread Jimmy Retzlaff
. * Thomas Heller's performance improvements for finding needed modules. * Mark Hammond's fix for thread-state errors when a py2exe created executable tries to use a py2exe created COM DLL. Changes in 0.6.3: * First release assembled by py2exe's new maintain

py2exe 0.6.4 released

2006-02-13 Thread Jimmy Retzlaff
homas Heller's performance improvements for finding needed modules. * Mark Hammond's fix for thread-state errors when a py2exe created executable tries to use a py2exe created COM DLL. Changes in 0.6.3: * First release assembled by py2exe's new maintainer, Jimmy

Going past the float size limits?

2007-10-26 Thread jimmy . musselwhite
Hello all It would be great if I could make a number that can go beyond current size limitations. Is there any sort of external library that can have infinitely huge numbers? Way way way way beyond say 5x10^350 or whatever it is? I'm hitting that "inf" boundary rather fast and I can't seem to work

Re: Going past the float size limits?

2007-10-26 Thread jimmy . musselwhite
On Oct 26, 6:56 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote: > On 10/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hello all > > It would be great if I could make a number that can go beyond current > > size limitations. Is there any sort of external library that can have > > infinitel

Re: Going past the float size limits?

2007-10-26 Thread jimmy . musselwhite
On Oct 26, 8:03 pm, Stéphane Larouche <[EMAIL PROTECTED]> wrote: > gmail.com> writes: > > > The calculation looks like this > > > A = 0.35 > > T = 0.30 > > C = 0.25 > > G = 0.10 > > > and then I basically continually multiply those numbers together. I > > need to do it like 200,000+ times but tha

ANN: EasyDialogs for Windows version 46691.0

2007-02-15 Thread Jimmy Retzlaff
drop down lists on Windows 98 and NT - Made minor changes to bring inline with CVS version 1.16 for Mac Version 1.14.0 - Initial public release Jimmy -- http://mail.python.org/mailman/listinfo/python-list

Latest XML Parsing/Memory benchmark

2008-03-04 Thread jimmy Zhang
The latest benchmark results are now available using the latest Intel Core2 Duo processor. In summary, VTD-XML using JDK 1.6's server JVM achieved an astonishing 120MB/sec sustained throughput per core on a Core2 Duo 2.5 GHz processor. * Parsing Only: http://www.ximpleware.com/2.3/benchmark_2

py2exe 0.6.9 released

2008-11-15 Thread Jimmy Retzlaff
diately after boot_common.py is executed. * Thomas Heller's performance improvements for finding needed modules. * Mark Hammond's fix for thread-state errors when a py2exe created executable tries to use a py2exe created COM DLL. Changes in 0.6.3: * First r

py2exe 0.6.8 released

2008-06-15 Thread Jimmy Retzlaff
omas Heller's performance improvements for finding needed modules. * Mark Hammond's fix for thread-state errors when a py2exe created executable tries to use a py2exe created COM DLL. Changes in 0.6.3: * First release assembled by py2exe's new maintainer, Jimmy Re

py2exe 0.6.5 released

2006-03-20 Thread Jimmy Retzlaff
py is executed. * Thomas Heller's performance improvements for finding needed modules. * Mark Hammond's fix for thread-state errors when a py2exe created executable tries to use a py2exe created COM DLL. Changes in 0.6.3: * First release assembled by py2exe's n

Best practise for dual stack programming in python

2010-03-21 Thread Jimmy Stewpot
ppreciated. Regards, Jimmy Stewpot. -- http://mail.python.org/mailman/listinfo/python-list

Re: [Py2exe-users] how to build same executabl with and without console output

2010-07-30 Thread Jimmy Retzlaff
lternate form of the "windows" and "console" arguments where each target is an object with specially named member variables rather than a string that names the .py file (this string is one of the member variables). This is necessary so you can give different names to the console version and the windows version. Jimmy -- http://mail.python.org/mailman/listinfo/python-list

downloading python 3.6.0 with pygame

2017-05-02 Thread tamale JIMMY
please i need tour help,how can i download python 3.6.0 together with pygame? -- https://mail.python.org/mailman/listinfo/python-list

test

2006-12-12 Thread Jimmy E Touma
please ignore -- http://mail.python.org/mailman/listinfo/python-list

Crypto Suggestion/Help

2007-04-08 Thread Jimmy E Touma
. Only manager should. If I use a private/public key for doing so I have to store the private key on my computer. What is a good way to encrypt a file and have the key well hidden on the same computer? If you have any other way to do, like MD5 or similar, please let me know. Thanks, Jimmy -- http

Re: Crypto Suggestion/Help

2007-04-09 Thread Jimmy E Touma
Paul, Thanks for the reply. Yes the shop has only one machine and many users use it to perform transactions. Maybe a basic Linux/Unix permissions will do as Thomas Kruger suggested in the thread following you. --Jimmy Paul Rubin wrote: > Jimmy E Touma <[EMAIL PROTECTED]> writes: >&