On Sep 26, 5:52 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > On Sep 26, 8:30 am, Steve Holden <[EMAIL PROTECTED]> wrote:
> >> Fredrik Lundh wrote:
> >>> Paul Boddie wrote:
> P.S. Of course, the package maintainer problem manifests itself most
> prominently on
On Sep 27, 10:46 am, Alexandre Badez <[EMAIL PROTECTED]>
wrote:
> On Sep 27, 4:20 pm, [EMAIL PROTECTED] wrote:
>
>
>
> > I got it to work using subprocess.Popen
>
> > Not sure why it doesn't work with os.system though.
>
> > Mike
>
> Thanks Mike and Mauro,
>
> Mauro, your solution do not seems to w
On Sep 28, 9:57 am, "Sugrue, Sean" <[EMAIL PROTECTED]> wrote:
> I'm trying to make an odbc connection to postgresql which is on a server
> using python.
> Does anyone have a code snippet to make a basic connection with a select
> query?
>
> Sean
Sean,
This appears to be what you're looking for:
On Sep 28, 1:07 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > On Sep 28, 9:57 am, "Sugrue, Sean" <[EMAIL PROTECTED]> wrote:
> >> I'm trying to make an odbc connection to postgresql which is on a server
> >> using python.
> >> Does anyone have a code snippet to make a ba
On Sep 30, 10:18 pm, shailesh <[EMAIL PROTECTED]> wrote:
> Hi,
> I wish to create a Python distribution includind Python and some other
> libraries (Zope 3, PyWin32, numpy, lxml, etc.) which are required for
> my applications. e.g. there are Enthough and ASPN distributions of
> Python.
>
> Unfortun
On Sep 27, 10:44 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > What would it entail to do this? Using py2exe + some installer (like
> > Inno Setup) to create an installer that basically copies/installs the
> > files into the site-packages folder or wherever the user ch
On Oct 2, 7:56 am, [EMAIL PROTECTED] wrote:
> Hi,
>
> I want to open a file seach dialog from within my python script which
> I run from within PythonWin. I also have the wxPython package
> installed.
>
> How might I do this?
>
> Thanks,
>
> Aine
Aine,
I recommend downloading the wxPython Demo as
On Oct 2, 7:56 am, [EMAIL PROTECTED] wrote:
> Hi,
>
> I want to open a file seach dialog from within my python script which
> I run from within PythonWin. I also have the wxPython package
> installed.
>
> How might I do this?
>
> Thanks,
>
> Aine
Oh yeah. You might find this helpful too:
http://w
On Oct 2, 11:43 am, "Jorgen Bodde" <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I parse an XML file, replace a node with a new one (like updating
> cache) and write it back. Every write, new spaces are added. For
> example, first read - update - write cycle;
>
>
> My First App
>
>
> Second cycle
On Oct 2, 11:00 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Tue, 02 Oct 2007 10:11:24 -0300, <[EMAIL PROTECTED]> escribi?:
>
> > Holden indicates that VS2003 is the current compiler used for the
> > official Python distribution. Do you know how to use that program to
> > compile an exe?
On Oct 8, 8:27 am, Bruce <[EMAIL PROTECTED]> wrote:
> Hi,
> I am trying to have my script automate a task, by using os.system, but
> I cant get it to work.
>
> manually, outside the script I can do this thing by
>
> C:\echo argument_file | the_program
>
> This works very well when argument_file is
On Oct 7, 12:30 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> Tim Chase wrote:
> >> You are assuming the system is not localized, that won't work if you
> >> distribute your applications internationally. In my system it is not
> >> "Desktop", it is "Escritorio", and I guess it will vary with every
>
On Oct 8, 9:19 am, goldtech <[EMAIL PROTECTED]> wrote:
> > from win32com.shell import shell, shellcon
>
> > desktop = shell.SHGetFolderPath (0, shellcon.CSIDL_DESKTOP, 0, 0)
>
> >
>
> Tim,
>
> How did you learn Win32com?
>
> Other than the O'Reilly book, I've never found a lot of
> documentation.
On Oct 8, 10:11 am, Tim Golden <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > On Oct 8, 9:19 am, goldtech <[EMAIL PROTECTED]> wrote:
> >>> from win32com.shell import shell, shellcon
> >>> desktop = shell.SHGetFolderPath (0, shellcon.CSIDL_DESKTOP, 0, 0)
> >>>
> >> Tim,
>
> >> How did yo
I am trying to figure out how to build binaries for Python packages
and I've done it with MinGW. However, in my research, I've noticed
that some of the programmers out there think that you should use the
compiler that is used to compile the official Python distributions,
which appears to be Visual
On Oct 10, 11:53 am, "Jim B. Wilson" <[EMAIL PROTECTED]> wrote:
> On Wed, 10 Oct 2007 14:35:35 +, kyosohma wrote:
> > I am trying to figure out how to build binaries for Python packages and
> > I've done it with MinGW.
>
> Apparently, you still can:htt
On Oct 10, 11:53 am, "Jim B. Wilson" <[EMAIL PROTECTED]> wrote:
> On Wed, 10 Oct 2007 14:35:35 +, kyosohma wrote:
> > I am trying to figure out how to build binaries for Python packages and
> > I've done it with MinGW.
>
> Apparently, you sti
You've got calls for properties in other classes and you don't
initialize the panel object. I edited the code somewhat so it'll at
least run. I tried to comment where I changed things, but I may have
missed a few minor points. See below:
#The commented out code from MyFrame was moved to class
On Oct 11, 4:01 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
> On 10/11/07, <"@bag.python.org <"none> wrote:> wxGlade created a simple Frame
> with a panel a sizer and 3 wxControls ,
> > saticText, TextCtrl, and a Button.
>
>
>
> > It seems as though the complaint is that a 'wxWindow *' is expe
On Oct 12, 1:53 pm, 7stud <[EMAIL PROTECTED]> wrote:
> s = 'A\xcc\x88' #capital A with umlaut
> print s #displays capital A with umlaut
>
> s = raw_input('Enter: ') #A\xcc\x88
> print s#displays A\xcc\x88
>
> print len(input) #9
>
> It looks like every ch
On Oct 12, 2:55 pm, Florian Lindner <[EMAIL PROTECTED]> wrote:
> Hello,
> is there a function in the Python stdlib to test if a string is a valid
> email address?
>
> Thanks,
>
> florian
What do you mean? If you're just testing the construction of the email
address string, then it's pretty easy. I
On Oct 16, 8:28 am, Shawn Minisall <[EMAIL PROTECTED]> wrote:
> I just learned about while statements and get why you place them around
> inputs for validation, but I'm a little lost on exactly where to place
> it with what condition in this program where the number of fat grams
> exceeds the total
On Oct 16, 3:00 am, Lars Johansen <[EMAIL PROTECTED]> wrote:
> HI are there any recommended books for an sysadmin who has been mostly
> writing shell scripts, but want to move up to create more complex
> programs.
The Python Cookbook would probably be another good resource. While I
don't like the
On Oct 16, 1:52 pm, fabdeb <[EMAIL PROTECTED]> wrote:
> Hi every one,
> I m a sysadmin who want to know how to use python.
> I dont know anything about oriented object programation, i only know
> bash and a little perl.
> I have some simple questions about python.
>
> the first: what is the differe
On Oct 16, 3:00 am, Lars Johansen <[EMAIL PROTECTED]> wrote:
> HI are there any recommended books for an sysadmin who has been mostly
> writing shell scripts, but want to move up to create more complex
> programs.
See also
http://www.ibm.com/developerworks/aix/library/au-python/
http://www.samag.
On Oct 16, 3:46 pm, Johny <[EMAIL PROTECTED]> wrote:
> My Main program imports several other smaller programs.
> for example
> Main.py
> imports
> Program1.py
> Program2.py
> ...
> Program50.py
>
> Now I need to find out which of Programs imports a particular module
> - module timesocket.py
> Is t
On Oct 16, 3:43 pm, stef mientki <[EMAIL PROTECTED]> wrote:
> I want to view my own namespace,
> i.e. to see the modules namespace in the module itself,
> is that possible ?
>
> I can use
>dir()
> but I read dir is just a convenience function,
> and besides I want key/value pairs.
>
> thanks,
>
On Oct 17, 4:12 am, Greg Ewing <[EMAIL PROTECTED]> wrote:
> Pyrex 0.9.6.3 is now available:
>
>http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/
>
> Main features of this release:
>
>* The C API now uses just one name in the module namespace,
> instead of a name per C function.
>
>
On Oct 17, 4:32 am, Heiko Schlierkamp <[EMAIL PROTECTED]
africa.com.na> wrote:
> I need to update the virus program every day with the new dat file from
> mcafee
> I would like to us a Bat file to go to the web page and download the dat
> file automatically to a specific Directory, that I have crea
On Oct 19, 3:45 am, zooey <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> I want to make transparent/launcher-like window application using python.
>
> (similar as Enso, Launchy, etc. I know Enso written in python.)
>
> Is there any open source project like it or any example?
>
> Thanks,
>
> Aaron.
>
On Oct 19, 10:32 am, [EMAIL PROTECTED] wrote:
> In python, how do I know what exceptions a method could raise? Do I
> need to look at the source? I don't see this info in the API docs for
> any of the APIs I'm using.
>
> Thanks in advance for your help.
Read the source, run unit tests, etc. If y
On Oct 22, 4:53 am, [EMAIL PROTECTED] wrote:
> For my C application, I use many interpreters (withh the fonction
> Py_NewInterpreter()). For my needs, I create many GUI with wxPython
> and I have problems. Here is My C Code:
>
> {
> PyEval_InitThreads();
> Py_Initialize();
> PyImport_Im
On Oct 21, 11:25 am, enska <[EMAIL PROTECTED]> wrote:
> Can someone clarify the steps needed to make access to the interpreter
> safe from multiple threads?
>
> I've been reading the docs for days and I still find them very confusing
> and misleading. For example does the PyGILState_Ensure() functi
On Oct 23, 11:07 am, Steven D'Aprano <[EMAIL PROTECTED]
cybersource.com.au> wrote:
> I'm writing a command-line application that is meant to be relatively
> user friendly to non-technical users.
>
> (Some wags might like to say that "user friendly" and "command-line
> application" are, by definitio
On Oct 24, 7:27 am, Bjoern Schliessmann wrote:
> TheFlyingDutchman wrote:
> > I am trying to install Python 2.5 on Windows XP. It installs into
> > the root directory on C:\ instead of C:\Python25
>
> BTW, what exactly is behind the idea to install to c:\python25
> instead of %PROGRAMFILES%\python
On Oct 24, 7:09 am, Alexandre Badez <[EMAIL PROTECTED]> wrote:
> I'm just wondering, if I could write a in a "better" way this code
>
> lMandatory = []
> lOptional = []
> for arg in cls.dArguments:
> if arg is True:
> lMandatory.append(arg)
> else:
> lOptional.append(arg)
> return (lMan
On Oct 24, 8:02 am, [EMAIL PROTECTED] wrote:
> On Oct 24, 7:09 am, Alexandre Badez <[EMAIL PROTECTED]> wrote:
>
> > I'm just wondering, if I could write a in a "better" way this code
>
> > lMandatory = []
> > lOptional = []
> > for arg in cls.dArguments:
> > if arg is True:
> > lMandatory.app
On Oct 23, 7:06 pm, Chris Carlen <[EMAIL PROTECTED]>
wrote:
> Hi:
>
> #!/usr/bin/env python
>
> """From listing 3.3 in 'wxPython in Action'
> Demonstrates that something funny happens when you click&hold in the
> frame, then drag the mouse over the button window. The
> wx.EVT_ENTER_WINDOW event is
On Oct 24, 9:35 am, Mark Morss <[EMAIL PROTECTED]> wrote:
> I am a unix person, not new to Python, but new to Python programming
> on windows. Does anyone know where to find documentation on
> win32com.client? I have successfully installed this module and
> implemented some example code. But a c
On Oct 23, 7:06 pm, Chris Carlen <[EMAIL PROTECTED]>
wrote:
> Hi:
>
> #!/usr/bin/env python
>
> """From listing 3.3 in 'wxPython in Action'
> Demonstrates that something funny happens when you click&hold in the
> frame, then drag the mouse over the button window. The
> wx.EVT_ENTER_WINDOW event is
On Oct 25, 12:36 pm, TheFlyingDutchman <[EMAIL PROTECTED]> wrote:
> On Oct 24, 11:22 pm, Tim Roberts <[EMAIL PROTECTED]> wrote:
>
> > TheFlyingDutchman <[EMAIL PROTECTED]> wrote:
>
> > >I am trying to install Python 2.5 on Windows XP. It installs into the
> > >root directory on C:\ instead of C:\Py
On Oct 26, 3:55 am, sundarvenkata <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> Can somebody tell me if there is an event to indicate mouse hover over
> a control in wxPython? EVT_MOTION does not seem to cut it.
>
> Thanks in advance,
> Sundar
What are you trying to do? I use EVT_MOTION for mouse hove
On Oct 26, 12:35 pm, owl <[EMAIL PROTECTED]> wrote:
> I love easy_install.
>
> I love watching it search and complete.
> It's when it doesn't complete that causes me grief.
> I don't program a lot these days and am relatively new to python but I
> often wind up installing packages on both unix and
On Oct 29, 12:58 am, [EMAIL PROTECTED] wrote:
> I'm brand new to Python--and programming in general. I'm trying to use
> IEC to control Internet Explorer. I've navigated to a page, and now
> I'm trying to click a button. The button appears to be called 'PDF
> Preview' but I honestly do not know whe
On Oct 29, 9:26 am, Steven D'Aprano <[EMAIL PROTECTED]
cybersource.com.au> wrote:
> On Sun, 28 Oct 2007 21:02:02 -0400, Shawn Minisall wrote:
> > Thanks a lot for your suggestions. Unfortunately, a lot of the issues
> > brought up were simply the way I was taught by my professor and the way
> > sh
On Oct 29, 10:39 pm, sandipm <[EMAIL PROTECTED]> wrote:
> seeing posts from students on group. I am curious to know, Do they
> teach python in academic courses in universities?
>
> in undergrad comp science courses, We had scheme language as scheme
> is neat and beautiful language to learn program
On Oct 30, 1:31 pm, [EMAIL PROTECTED] wrote:
> suppose i have imported two modules foo and bar with
> foo=PyImport_ImportModule("foo") and bar=PyImport_ImportModule("bar")
> respectively.
>
> Now suppose I have an artitrary python expression to evaluate.
> Do I need to parse that thring and check f
On Oct 30, 2:55 pm, Bruno Desthuilliers
<[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] a écrit :
>
> > On Oct 29, 10:39 pm, sandipm <[EMAIL PROTECTED]> wrote:
>
> >>seeing posts from students on group. I am curious to know, Do they
> >>teach python in academic courses in universities?
>
> >>in unde
On Oct 31, 7:08 am, Michael <[EMAIL PROTECTED]> wrote:
> I'm trying to build a exe on a vista system using py2exe. It will
> deploy to vista and XP systems. If it matters, the application uses
> pyserial, as well. I have VS Studio 2005 installed on this laptop as
> well. I've found this so far that
On Nov 1, 9:52 am, bluegray <[EMAIL PROTECTED]> wrote:
> I'm writing a script that outputs html. It works fine in Firefox,
> however, IE wants to download the file instead of displaying the
> output. I keep getting the file download dialog instead of the html
> page.
>
> I am doing something like t
On Nov 1, 1:23 pm, Tim Chase <[EMAIL PROTECTED]> wrote:
> >> [1]http://www.imladris.com/Scripts/PythonForWindows.html
>
> > I set the pythonpath to where the python interpreter is located C:
> > \Python24
> > However I still get the same error message. Is there something else
> > that must be confi
On Nov 1, 12:45 pm, braver <[EMAIL PROTECTED]> wrote:
> Greetings -- as a long time user of both Python and Ruby interpreters,
> I got used to the latter's syntax-coloring gem, wirble, which
> colorizes Ruby syntax on the fly. Is there anything similar for
> Python?
What's wrong with IDLE? There'
On Feb 5, 11:55 am, [EMAIL PROTECTED] wrote:
> Hi,
>
> I´m trying desperately to tell the interpreter to put an 'á' in my
> string, so here is the code snippet:
>
> # -*- coding: utf-8 -*-
> filename = u"Ataris Aquáticos #2.txt"
> f = open(filename, 'w')
>
> Then I save it with Windows Notepad, in
On Feb 5, 2:37 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> I am trying to measure the time the processor spends on some
> operation, and I want this measure to not depend on the current load
> of the machine. But doing the following prints different values each
> time a run.
>
> import tim
Hi,
I am trying to create a post logon script which does various tasks,
like setup a printer based on location. While most of it works very
fast, I have a second Python script that I run that scans the PC using
WMI (among other things) and writes the following to a database: Name,
Username, Machin
On Feb 27, 3:32 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > The problem I have is that since I import WMI, it takes a long time
> > and we have users complaining about it. So I stuck the import
> > statement into a separate thread and set it to a daemon so it could do
>
On Nov 5, 9:19 am, loial <[EMAIL PROTECTED]> wrote:
> I am writing a file in python with writelines
>
> f = open('/home/john/myfile',"w")
> f.writelines("line1\n")
> f.writelines("line2\n")
> f.close()
>
> But whenever I try to do anything with the file in python it finds no
> data. I am trying ft
On Nov 3, 7:57 am, André <[EMAIL PROTECTED]> wrote:
> I just installed Leopard on my Mac. I already was using Python 2.5.
> I can run a Python script from a terminal window by typing "python
> script.py" as one would expect ... but not using the Python launcher
> either directly or indirectly (by
On Nov 5, 11:00 am, [EMAIL PROTECTED] wrote:
> Hello,
>
> How can I Insert image with string in ListCtrl with this example:
>
> # Import ftputil module - like ftplib
> from ftputil import FTPHost
> # Create connection
> ftp=FTPHost("ftp.someserver.com","user","password")
>
> # LIST ALL FILES/FOLDER
Hi,
We use a script here at work that runs whenever someone logs into
their machine that logs various bits of information to a database. One
of those bits is the CPU's model and speed. While this works in 95% of
the time, we have some fringe cases where the only thing returned is
the processor nam
On Nov 6, 1:35 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
> On Nov 6, 2007 1:18 PM, <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
>
> > We use a script here at work that runs whenever someone logs into
> > their machine that logs various bits of information to a database. One
> > of those bits is th
On Nov 6, 2:27 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
> On Nov 6, 2007 2:12 PM, <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Nov 6, 1:35 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
>
> > > On Nov 6, 2007 1:18 PM, <[EMAIL PROTECTED]> wrote:
>
> > > > Hi,
>
> > > > We use a script here at work
On Nov 6, 3:11 pm, "Just Another Victim of the Ambient Morality"
<[EMAIL PROTECTED]> wrote:
> How do you change certain elements in a list? I'm looking to do the
> Python equivalent of this Ruby code:
>
> -> first = [1, 2]
> => [1, 2]
> -> second = first
> => [1, 2]
> -> first.map! {|i| i
On Nov 6, 2:51 pm, "Michael Bacarella" <[EMAIL PROTECTED]> wrote:
> > On the problem PCs, both of these methods give me the same information
> > (i.e. only the processor name). However, if I go to "System
> > Properties" and look at the "General" tab, it lists the CPU name and
> > processor speed.
On Nov 6, 3:02 pm, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote:
> > On the problem PCs, both of these methods give me the same information
> > (i.e. only the processor name). However, if I go to "System
> > Properties" and look at the "General" tab, it lists the CPU name and
> > processor speed. Do
On Nov 6, 3:56 pm, "Michael Bacarella" <[EMAIL PROTECTED]> wrote:
> > > This information is hardware dependent and probably unreliable.
>
> > > Why not run a benchmark and report the results instead?
> > > Like bogomips? http://en.wikipedia.org/wiki/Bogomips>
>
> > That's an interesting idea, but
On Nov 7, 7:58 am, [EMAIL PROTECTED] wrote:
> Hi there,
>
> I've been banging my head against this for a day, and I can't take it
> anymore. It's probably a stupid error, but I don't see where.
>
> I'm trying to use Python to call an external program, and then catch
> and process the output of tha
On Nov 7, 12:17 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> On Nov 7, 11:31 am, [EMAIL PROTECTED] wrote:
>
>
>
> > On Nov 7, 7:58 am, [EMAIL PROTECTED] wrote:
>
> > > Hi there,
>
> > > I've been banging my head against this for a day, and I can't take it
> > > anymore. It's probably a stu
On Nov 8, 5:45 am, [EMAIL PROTECTED] wrote:
> Hello,
>
> Here is example of my ListCtrl items with image:
>
> ( filebox1 is ListCtrl )
>
> il = wx.ImageList(16,16)
> images=["file1.png","folder.png"]
> for i in images:
> il.Add(wx.Bitmap(i))
> img_list=fi
On Nov 8, 2:23 pm, Sean Peterson <[EMAIL PROTECTED]> wrote:
> Has anyone had success using NetUseAdd() on shares that were replica links on
> a Windows 2003 DFS root? In my code, I'm getting error:
>
> pywintypes.error: (67, 'NetUseAdd', 'The network name cannot be found.')
>
> This is my scenario
On Nov 8, 1:09 pm, "Michael Bacarella" <[EMAIL PROTECTED]> wrote:
> > In our company we are looking for one language to be used as default
> > language. So far Python looks like a good choice (slacking behind
> > Java). A few requirements that the language should be able cope with
> > are:
>
> How
On Nov 8, 1:52 am, Michel Albert <[EMAIL PROTECTED]> wrote:
> In our company we are looking for one language to be used as default
> language. So far Python looks like a good choice (slacking behind
> Java). A few requirements that the language should be able cope with
> are:
>
> * Database access
On Nov 8, 2:23 pm, Sean Peterson <[EMAIL PROTECTED]> wrote:
> Has anyone had success using NetUseAdd() on shares that were replica links on
> a Windows 2003 DFS root? In my code, I'm getting error:
>
> pywintypes.error: (67, 'NetUseAdd', 'The network name cannot be found.')
>
> This is my scenario
Hi,
I am trying to get a small group of volunteers together to create
Windows binaries for any Python extension developer that needs them,
much like the package/extension builders who volunteer their time to
create Linux RPMs.
The main thing I need are people willing to test the binaries to make
On Nov 9, 8:36 am, Tim Golden <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Hi,
>
> > I am trying to get a small group of volunteers together to create
> > Windows binaries for any Python extension developer that needs them,
> > much like the package/extension builders who volunteer the
On Nov 8, 11:02 pm, sundarvenkata <[EMAIL PROTECTED]> wrote:
> hello all, is there a way to make wxpython frame to expand itself
>as we add controls to it
Yes. I recommend using sizers. Then you can have the frame fit the
widgets it holds using the Fit() command. I think this only appl
On Nov 9, 10:02 am, Tim Golden <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > The hardest part was finding accurate information. Most people on the
> > user groups have been unhelpful or sarcastic.
>
> That's a shame to hear. Because you were building on Windows?
> Or for some other reas
On Nov 9, 4:32 am, Michel Albert <[EMAIL PROTECTED]> wrote:
> On Nov 8, 8:55 pm, [EMAIL PROTECTED] wrote:
>
>
>
> > On Nov 8, 1:52 am, Michel Albert <[EMAIL PROTECTED]> wrote:
>
> > > In our company we are looking for one language to be used as default
> > > language. So far Python looks like a goo
On Nov 9, 11:03 am, Charles Tunley <[EMAIL PROTECTED]> wrote:
> Hi I need a list of games on ps2 and I'm in the united states, oklahoma
> <*Charli jo*>
Then you shouldn't post to a programming user's group. Try sony.com or
http://www.playstation.com/
Mike
--
http://mail.python.org/mailman/listi
On Nov 9, 12:24 pm, John Nagle <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Hi,
>
> > I am trying to get a small group of volunteers together to create
> > Windows binaries for any Python extension developer that needs them,
> > much like the package/extension builders who volunteer th
On Nov 9, 12:24 pm, John Nagle <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Hi,
>
> > I am trying to get a small group of volunteers together to create
> > Windows binaries for any Python extension developer that needs them,
> > much like the package/extension builders who volunteer th
On Nov 9, 4:07 pm, barronmo <[EMAIL PROTECTED]> wrote:
> Newbie with problem. I'm trying to build a multicolumn list control
> with wxPython and am having difficulty getting the data from my query
> into each column. I'm getting the following error:
>
> Traceback (most recent call last):
> File
On Nov 9, 5:26 pm, "M.-A. Lemburg" <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > On Nov 9, 8:36 am, Tim Golden <[EMAIL PROTECTED]> wrote:
> >> [EMAIL PROTECTED] wrote:
> >>> Hi,
> >>> I am trying to get a small group of volunteers together to create
> >>> Windows binaries for any Python
On Nov 9, 11:32 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Fri, 09 Nov 2007 13:30:03 -0300, <[EMAIL PROTECTED]> escribió:
>
> > On Nov 9, 10:02 am, Tim Golden <[EMAIL PROTECTED]> wrote:
> >> [EMAIL PROTECTED] wrote:
> >> > The hardest part was finding accurate information. Most people
On Nov 10, 1:12 pm, "M.-A. Lemburg" <[EMAIL PROTECTED]> wrote:
> On 2007-11-10 01:44, [EMAIL PROTECTED] wrote:
>
>
>
> >>> The directions for MinGW were usually only partially correct. So I
> >>> went through the two sets of directions I found (links on the site)
> >>> and mixed and matched until I
On Nov 10, 11:03 pm, Yu-Xi Lim <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Hi,
>
> > I am trying to get a small group of volunteers together to create
> > Windows binaries for any Python extension developer that needs them,
> > much like the package/extension builders who volunteer th
On Nov 13, 6:18 am, Laszlo Nagy <[EMAIL PROTECTED]> wrote:
> tarun írta:> Hi Laszlo Nagy,
>
> > Thanks a lot.
> > But the issue over here is that how will the child thread acknowledge
> > the main thread that it has completed its task. For this I'll have to
> > set some flag in the child thread and
On Nov 13, 12:03 am, gz <[EMAIL PROTECTED]> wrote:
> no, I don't have them... I need them :)
>
> I'd like to thank Giovanni Bajo for providing binaries for the various
> package dependencies, and geting me going with pyopengl.
>
> Unfortunately I only menaged to run a basic example, where there's n
On Nov 12, 5:16 pm, "SMALLp" <[EMAIL PROTECTED]> wrote:
> I forgot, I'm using wxPython"SMALLp" <[EMAIL PROTECTED]> wrote in message
>
> news:[EMAIL PROTECTED]
>
> > I'm new in python and i got lost.
>
> > Ima building an aplication that add's 2 panels and menu bar to the window.
> > So i made base
On Nov 13, 12:03 am, gz <[EMAIL PROTECTED]> wrote:
> no, I don't have them... I need them :)
>
> I'd like to thank Giovanni Bajo for providing binaries for the various
> package dependencies, and geting me going with pyopengl.
>
> Unfortunately I only menaged to run a basic example, where there's n
On Nov 13, 9:20 am, Johnny <[EMAIL PROTECTED]> wrote:
> Hi, I'm new to Python and am looking for a really good/complete open
> source project to learn from. I'd like it to take input from the
> browser and query mysql. Suggestions?
Zope / Plone, Django, or Turbogears are all web frameworks tha
On Nov 13, 9:28 am, [EMAIL PROTECTED] wrote:
> I am working on an implementation of the Longest Common Subsequence
> problem (as I understand it, this problem can be used in spell
> checking type activities) and have used this site to understand the
> problem and its solution:
>
> http://en.wikiboo
On Nov 13, 12:51 pm, Neil Cerutti <[EMAIL PROTECTED]> wrote:
> On 2007-11-13, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Nov 13, 9:28 am, [EMAIL PROTECTED] wrote:
> >> I am working on an implementation of the Longest Common
> >> Subsequence problem (as I understand it, this problem c
On Nov 13, 1:47 pm, "Russell E. Owen" <[EMAIL PROTECTED]> wrote:
> In article <[EMAIL PROTECTED]>,
> Michel Albert <[EMAIL PROTECTED]> wrote:
>
>
>
> > In our company we are looking for one language to be used as default
> > language. So far Python looks like a good choice (slacking behind
> > Jav
On Nov 12, 12:07 pm, Timuçin K z lay <[EMAIL PROTECTED]> wrote:
> I'm an old programmer coming from a cobol background and started to
> learn python. I'm using javasript for web based applications but after I
> started to learn python, the javascript language started to seem ugly to
> me. Now I'm w
On Nov 14, 8:34 am, Laszlo Nagy <[EMAIL PROTECTED]> wrote:
> DanielJohnson wrote:
> > I have a small project which has around 10 .py files and I run this
> > project using command line arguments. I have to distribute this
> > project to somebody.
>
> > I was wondering how can I make an executable o
On Nov 14, 9:17 am, DanielJohnson <[EMAIL PROTECTED]> wrote:
> Thanks for telling about py2exe.
>
> Is there any utility that will help to make it as a .deb or .rpm file
> (for Linux)?
You'll probably want to take a look at PyInstaller. It can be found
here:
http://pyinstaller.python-hosting.com/
On Nov 14, 12:41 pm, [EMAIL PROTECTED] wrote:
> Hi everybody...
>
> I'm hoping one of you reading this can help me out here. I'm having
> trouble getting pywin32 to build with Visual Studio 2005. But first,
> some background.
>
> I'm embedding Python in an MFC application. I've manually built
> Pyt
On Nov 14, 11:56 am, [EMAIL PROTECTED] wrote:
> Referred here from the tutor list.
>
> > I'm trying to write a program to test someones typing speed and show
> > them their mistakes. However I'm getting weird results when looking
> > for the differences in longer (than 100 chars) strings:
>
> > imp
On Nov 14, 3:20 am, "Fredrik Johansson" <[EMAIL PROTECTED]>
wrote:
> Dick Moores wrote:
> > For 1234 ** 10.9, why the wrong result from mpmath.power()?
>
> >
> > #!/usr/bin/env python
> > #coding=utf-8
> > from mpmath import *
>
> > mpf.dps = 32
>
> > x = mp
501 - 600 of 708 matches
Mail list logo