gc.DEBUG_LEAK and gc.garbage

2005-04-19 Thread Cesar
after calling explicitally to gc.collect(). is this necessary? Thanks, Cesar -- http://mail.python.org/mailman/listinfo/python-list

Generating custom Windows installers

2012-04-05 Thread cesar . covarrubias
Hello, I am working on creating an installer of a Python 3.2 application that we programmed. The end goal is to create an installer in which we can specify the install path, and create shortcuts in the Start Menu and Desktop. Ideally, we would like to give the users the option to create the Des

Re: Generating custom Windows installers

2012-04-06 Thread Cesar Covarrubias
able to invoke that when generating the MSI so that the installer creates the shortcut? Cesar On Thu, Apr 5, 2012 at 8:42 PM, Mark Hammond wrote: > Seeing you are relying on win32com, you might as well add the links > directly rather than via the intermediate WScript.shell objec

Re: How to print non-printable chars??

2011-08-12 Thread Julio Cesar
On Aug 13, 1:22 am, Nobody wrote: > On Sat, 13 Aug 2011 00:59:42 -0400, Julio Cesar Rodriguez Cruz wrote: > > > Hi all, > > If I open an .exe file in any text editor I get lot of odd chars, > > what I want is to know how to output those chars if I have the hexadecimal >

Re: what's OOP's jargons and complexities?

2005-01-30 Thread Cesar Rabak
Pascal Bourguignon escreveu: "Larry" <[EMAIL PROTECTED]> writes: Xah Lee wrote: in computer languages, often a function definition looks like this: [EMAIL PROTECTED] http://xahlee.org/PageTwo_dir/more.html Your ideas are original, insightful and simply reflect incredibly deep creative genius. I

question

2013-10-23 Thread Cesar Campana
Hi! Im installing the python library for the version 2.7 but Im getting the error unable to find vcvarsall.bat I was looking on line but it says is related to Visual Studio...? Can you guys please help me to fix this... Cesar -- https://mail.python.org/mailman/listinfo/python-list

Memory Management in python 2.5

2006-10-09 Thread cesar . ortiz
consumption is the same. Now I am asking myself if python 2.5 has any improving in memory management or maybe not yet. Thank you. -- Cesar -- http://mail.python.org/mailman/listinfo/python-list

Re: Memory Management in python 2.5

2006-10-09 Thread cesar . ortiz
instantec.. is it enough to do a clear() in a dictionary? -- Cesar -- http://mail.python.org/mailman/listinfo/python-list

Using sax libxml2 html parser

2007-01-05 Thread cesar . ortiz
ow if I am forgetting something in the code, as I have not been able to find any example on the web. Thanks in advance, Cesar Note: I have also tried to put the cleanup functions inside the 'for' loop. ] The Code [

Getting a function name from string

2007-05-08 Thread Cesar Härdfeldt
by __import__(module) but is there another way to call: module.function(parms) than using eval()? Thanks for any suggestions, Best Cesar -- http://mail.python.org/mailman/listinfo/python-list

Re: importing with .m instead of .py

2009-09-25 Thread Cesar Koers
Wanderer wrote: I would like to import Matlab/Octave files of the .m sort into Python that look like this. # comment y=[1,2,3,4,5\ ,6,7,8,9]; # comment The only problem is I have to change the extensions from .m to .py. Is there a way to get python to import files that don't end in .py? Thank

Basic question

2007-05-12 Thread Cesar G. Miguel
or Java, for example. Am I missing something? []'s Cesar -- http://mail.python.org/mailman/listinfo/python-list

Re: Basic question

2007-05-12 Thread Cesar G. Miguel
On May 12, 2:45 pm, Basilisk96 <[EMAIL PROTECTED]> wrote: > On May 12, 12:18 pm, "Cesar G. Miguel" <[EMAIL PROTECTED]> wrote: > > > > > I've been studying python for 2 weeks now and got stucked in the > > following problem: > > > for j

Re: Basic question

2007-05-12 Thread Cesar G. Miguel
On May 12, 3:09 pm, Karlo Lozovina <[EMAIL PROTECTED]> wrote: > Cesar G. Miguel wrote: > > - > > L = [] > > file = ['5,1378,1,9', '2,1,4,5'] > > str='' > > for item in file: > >

Re: Basic question

2007-05-12 Thread Cesar G. Miguel
On May 12, 3:40 pm, Dmitry Dzhus <[EMAIL PROTECTED]> wrote: > > Actually I'm trying to convert a string to a list of float numbers: > > str = '53,20,4,2' to L = [53.0, 20.0, 4.0, 2.0] > > str="53,20,4,2" > map(lambda s: float(s), str.split(',')) > > Last expression returns: [53.0, 20.0, 4.0, 2.0] >

Re: Basic question

2007-05-13 Thread Cesar G. Miguel
On May 12, 8:13 pm, [EMAIL PROTECTED] (Alex Martelli) wrote: > Cesar G. Miguel <[EMAIL PROTECTED]> wrote: > > > On May 12, 3:40 pm, Dmitry Dzhus <[EMAIL PROTECTED]> wrote: > > > > Actually I'm trying to convert a string to a list of float numbers: > >

Re: GLE-like python package

2007-10-14 Thread Cesar G. Miguel
gt; a lot. One reason is that with GLE > you can also do diagrams, that is, descriptive pictures (like > http://glx.sourceforge.net/examples/diagrams/index.html>) > > Is there anything similar for python? > > /W I think this is what you're looking for: http://pyx.sour

Output buffer

2007-12-22 Thread Cesar D. Rodas
Regards Cesar D. Rodas http://www.cesarodas.com http://www.thyphp.com http://www.phpajax.org Phone: +595-961-974165 -- http://mail.python.org/mailman/listinfo/python-list

Re:Re: Output buffer

2007-12-23 Thread Cesar D. Rodas
On 22/12/2007, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > > Cesar D. Rodas wrote: > > > I am newbie in Python, but I like it very much. > > > > Right now I am having a problem, I am working with mod_python in apache. > > What I needing is a stdout buffe

Re: Happy Christmas Pythoneers

2007-12-23 Thread Cesar D. Rodas
like to > > wish you all a Merry Xmas. > > > > - Paddy. > > -- > > http://mail.python.org/mailman/listinfo/python-list > > > > > > -- > Regards-- > Rishi Pathak > > > -- > http://mail.python.org/mailman/listinfo/python-list > -- Bes

Language detector using N-grams

2009-05-12 Thread Cesar D. Rodas
Hello Pythoners! I just finished my first useful project in Python, It is a language detector using N-grams. I hope this can be useful for someone, http://github.com/crodas/py-languess/tree/master The License of the project is BSD Best regards -- Cesar D. Rodas http://cesar.la/ Phone: +595

How to print non-printable chars??

2011-08-12 Thread Julio Cesar Rodriguez Cruz
('ñè') '=F1=E8=18' >>> quopri.decodestring('=F1=E8=18') '\xf1\xe8\x18' but how to do the reverse? ...gived '\xf1\xe8\x18', print 'ñè' any tips? thanks Julio Cesar -- http://mail.python.org/mailman/listinfo/python-list

Write an hexadecimal file

2005-03-30 Thread Cesar Andres Roldan Garcia
rite an hex file! Thanks! -- Atentamente, Cesar Andres Roldan Garcia Presidente Comunidad Académica Microsoft Javeriana Cali - Colombia -- http://mail.python.org/mailman/listinfo/python-list

Controling the ALU

2005-03-31 Thread Cesar Andres Roldan Garcia
Hi How can I control an ALU from a PC using Python? Thanks! Hola... Como puedo controlar la ALU de un PC usando Pyhton? Gracias! -- Atentamente, Cesar Andres Roldan Garcia Presidente Comunidad Académica Microsoft Javeriana Teléfono: 300 8169857 Cali - Colombia -- http://mail.python.org