2.4.3
wxPython 2.6.1.2Pre
--
Saludos / Best regards
Mario Lacunza Vásquez
Desarrollador de Software - Webmaster
Desarrollador 2 Estrellas VS2005
Website: http://mlacunzav.cogia.net
Email : mlacunza[AT]gmail[DOT]com
Email : mario_lacunza[AT]yahoo[DOT]es
Blog
Hi,Is possible then you correct the path for download the sources Zip file?? I want to test this tool but I dont could donwload it...Thansk!2006/8/23, limodou <
[EMAIL PROTECTED]>:What's it?
It's an Editor based on wxPython. NewEdit is the old name, and UliPadis the new name. UliPad uses Mi
Sorry, I correct me:Your link in the message not found, but the link in the web site work Ok.Thanks!2006/8/24, Mario Lacunza <[EMAIL PROTECTED]
>:Hi,Is possible then you correct the path for download the sources Zip file??
I want to test this tool but I dont could donwload it...Thansk!200
ks in advance!!
--
Mario Lacunza <[EMAIL PROTECTED]>
# -*- coding: utf8 -*-#
#Boa:Frame:frmClientes
__version__='0.5'
__autor__='Mario Lacunza Vasquez <[EMAIL PROTECTED]>'
import wx
import wx.grid
import modGlobals
from Conectar import Conectar
import errores
def c
- Mensaje reenviado
De: Mario Lacunza <[EMAIL PROTECTED]>
Para: Lista Python Ing
Asunto: Problems with PyGridTableBase
Fecha: Sat, 09 Sep 2006 00:03:20 -0500
Hello,
I attach two files:frmClientes and frmClientesNE.
frmClientes charge a Grid with resume Costumers data
Hello,
If there is anyone familiar with python C api, and would like to get
involved with writing python extensions for above two libs
(http://libburn.pykix.org) please contact me.
Kind regards,
Mario
--
http://mail.python.org/mailman/listinfo/python-list
--
Saludos / Best regards
Mario Lacunza Vásquez
Desarrollador de Software - Webmaster
Linux Registered User #439179
Desarrollador 2 Estrellas VS2005
Website: http://mlacunzav[DOT]cogia[DOT]net
Email : mlacunza[AT]gmail.com / mario_lacunza[AT]yahoo.es
Blog : http
tu Edgy Eft 6.10
> Linux Kernel 2.6.17-11-386
> Gnome 2.16.1
> Python 2.4.4c1
> wxPython 2.8.1.1 Unicode
> Python IDE: Ulipad 3.6
> Database: Firebird 2.0 Superserver
>
> --
> Saludos / Best regards
>
> Mario Lacunza Vásquez
> Desarrollador de Software - Webmaste
o make it right?
It may help to look at the settings of your editor. I think Vim (and
surely emacs) can help you with that.
(look at :help retab, paste, expandtab in (g)Vim)
Mario
--
Mario Wehbrink
--
http://mail.python.org/mailman/listinfo/python-list
?
Mi configuracion/My config:
Ubuntu Breezy 5.10
Linux Kernel 2.6.12-10-386
Python 2.4.2
wxPython 2.6.1.1Pre
OpenOffice 2.0.1
--
Saludos / Best regards
Mario Lacunza Vásquez
Desarrollador de Software - Webmaster
Desarrollador 2 Estrellas VS2005
Website: http://mlacunzav.cogia.net
Emai
Hello,This is a GUI program for Dia2Code lib under GPL licence: "Dia2Code basically reads a Dia diagram file that contains an
UML class diagram and creates files in the language of choice that
contain the bare bones of the classes represented in the diagram...""Generates code for: Ada, C, C+
strong reasons to not rely on this
difference? Would it be maybe a little abusive of what a keyword arg
actually is?
mario
--
http://mail.python.org/mailman/listinfo/python-list
Hello,
I would like to evaluate list comprehension expressions, from within
which I'd like to call a function. For a first level it works fine but
for second level it seems to lose the "_[1]" variable it uses
internally to accumulate the results. Some sample code is:
class GetItemEvaluator(object
On Jan 15, 12:29 pm, mario ruggier wrote:
> Any ideas why?
>
> Note, i'd like that the first parameter to ts() is as independent as
> possible from the context in expression context, a sort of independent
> mini-template. Thus, the i,j enumerate counters would normally not
On Jan 15, 1:48 pm, bearophileh...@lycos.com wrote:
> mario ruggier, that's a hack that you can forget. Your code can't be
> read. Don't use list comps for that purpose. Write code that can be
> read.
Ya, agree with you whole-heartily, but then so are most
optimizations
On Jan 15, 2:02 pm, Peter Otten <__pete...@web.de> wrote:
> mario ruggier wrote:
> > Hello,
>
> > I would like to evaluate list comprehension expressions, from within
> > which I'd like to call a function. For a first level it works fine but
> > f
offer you a nice
dinner (including the beer!) somewhere, maybe at some py conference,
but even remotely if that is not feasible... ;-) The upcoming 0.4
release will run on 2.4 thru to 3.0 -- you can have some fun with that
one (the current 0.3 runs on 2.5 and 2.6).
> --
> Steven
Cheers, mario
--
http://mail.python.org/mailman/listinfo/python-list
The listcomps exploration above was primarily an attempt
(unsuccessful) to make this piece of code go a little faster:
s = " text %(item)s text "
acc = []
for value in iterator:
some_dict["item"] = value
acc.append(s % evaluator)
"".join(acc)
The item=value pair is essentially a loop vari
On Jan 15, 9:36 pm, Mark Wooding wrote:
> mario ruggier writes:
> > Some info on its security is at:
> >http://evoque.gizmojo.org/usage/restricted/
> > Tell you what, if you find a security hole there (via exposed template
> > source on a Domain(restricted=True) s
On Jan 15, 10:35 pm, ajaksu wrote:
> On Jan 15, 1:56 pm, mario ruggier wrote:
>
> > As
> > I mentioned in another thread, the real application behind all this is
> > one of the *few* secure templating systems around. Some info on its
> > security is at:http://evoqu
On Jan 15, 11:35 pm, Terry Reedy wrote:
> Peter Otten wrote:
> > List comprehensions delete the helper variable after completion:
>
> I do not believe they did in 2.4. Not sure of 2.5. There is certainly
> a very different implementation in 3.0 and, I think, 2.6. OP
> neglected to mention Pyt
On Jan 16, 2:30 am, ajaksu wrote:
> On Jan 15, 8:21 pm, mario ruggier wrote:
>
> > OK! Here's a small script to make it easier...
>
> Thanks! I think I found a quick way around the restrictions (correct
> me if I borked it), but I think you can block this example b
On Jan 16, 1:35 pm, ajaksu wrote:
> On Jan 16, 5:09 am, mario ruggier wrote:
>
> > Laboriously doing all these
> > checks on each expr eval will be very performance heavy, so I hope to
> > be able to limit access to all these more efficiently. Suggestions?
>
> None
On Jan 17, 12:04 am, ajaksu wrote:
> On Jan 16, 3:45 pm, mario ruggier wrote:
>
> > > '(x for x in ()).throw("bork")'
>
> > What is the potential security risk with this one?
>
> I don't see a concrete issue, just found it tempting... ra
Just to add that a further potential subversion possibility could have
been to build the expr in some way from within a template, and then
dynamically setting that string as the source of a new template with
from_string=True. This is precisely the reason why **from within a
template** evoque has ne
On Jan 16, 7:17 pm, Paul Rubin <http://phr...@nospam.invalid> wrote:
> mario ruggier writes:
> > All the above attempts will be blocked this way. Any other disallow-
> > sub-strings to add to the list above?
>
> I think what you are trying to do is fundamentally hop
On Sun, Jan 4, 2009 at 6:46 PM, Tino Wildenhain wrote:
> mario wrote:
>>
>> On Jan 3, 7:16 am, Steven D'Aprano > cybersource.com.au> wrote:
>>
>>> I was about to make a comment about this being a security hole,
>>
>> Strange that you say th
other half
talked them into it, and gave them the impression that "it was cool"
while they were perfectly happy with their current choise (under
windows for example, programmers notepad is a very nice editor, imho).
Just my 2 cents.
--
Mario
--
http://mail.python.org/mailman/listinfo/python-list
>> Don't we have something like a poll to solve this peacefully ?
>> cheers,
>> Stef
>
>Polls are just popularity/fan contests. Even Ricky Martin could win one
>of those.
LOL
-- Mario
--
http://mail.python.org/mailman/listinfo/python-list
ui of an ide.
After all, an ide is just a frontend to something ...
>
>Personally I also find high value in picking an editor that can be run
>on a command-line terminal connection (e.g. when you're ssh'd into a
>remote server), but that may be less important depending on wha
lename
ValueError: unknown locale: UTF-8
I think this issue is related to the (currently open) "Python fails
silently on bad locale" bug:
http://bugs.python.org/issue2173
How should this issue be worked around or dealt with? Should users on
Mac OS X 10.5 change the default value of LC_CTYPE? To what?
mario
--
http://mail.python.org/mailman/listinfo/python-list
R COPY
>THIS LINKS: http://www.youtube.com/watch?v=k14WAzpANJc
>http://groups.google.com/group/propertybg
Unless you're breeding pythons there, you're offtopic.
--
Mario
--
http://mail.python.org/mailman/listinfo/python-list
n.framework/Versions/2.5/lib/
python2.5/locale.py", line 373, in _parse_localename
raise ValueError, 'unknown locale: %s' % localename
ValueError: unknown locale: UTF-8
>>>
This is on open bug or is there more to it?
Regards, mario
--
http://mail.python.org/mailman/listinfo/python-list
Hello Robin,
Are available repos for Ubuntu Hardy??
2008/6/25 Robin Dunn <[EMAIL PROTECTED]>:
> Announcing
> --
--
Saludos / Best regards
Mario Lacunza
Consultor de Sistemas - Webmaster
Email: mlacunza [AT] gmail [DOT] com
Lima - Peru
--
http://mail.python.org/mail
ata?"
print pickle.loads(savedData)
----
Thank you for any help!
Mario
--
http://mail.python.org/mailman/listinfo/python-list
ure
optimization is the root of all evil", .... :)
Thanks a lot,
Mario
On Fri, Apr 18, 2008 at 8:00 PM, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Apr 18, 11:55 am, "Mario Ceresa" <[EMAIL PROTECTED]> wrote:
> > Hello everybody:
> > I'd like to u
On Oct 5, 4:25 pm, Aaron Watters wrote:
> Occasionally I fantasize about making a non-trivial change
> to one of these programs, but I strongly resist going further
> than that because the ORM meatgrinder makes it somewhere
> between extremely unpleasant and impossible to make any
> non-trivial c
With respect to to original question regarding web frameworks +
database and Python 3, all the following have been available for
Python 3 since the day Python 3.0 was released:
QP, a Web Framework
http://pypi.python.org/pypi/qp/
Durus, a Python Object Database (the "default" in qp, for user
sessi
Im trying to use sets for doing statistics from a data set.
I want to select, 70% random records from a List. I thougth set where
a good idea so I
tested this way:
c = set(range(1000))
for d in range(1000):
print c.pop()
I was hoping to see a print out of random selected numbers from 1 to
10
ointed out.
Conceptually something like this:
population = range(100)
training = random.sample(population,70)
validation = set(population).difference(set(training))
But I think this is more costly
Thanks Again
Mario
--
http://mail.python.org/mailman/listinfo/python-list
pop(), remove from the population a
certain number of elements at random.
In the docs pop is defined as:
Remove and return an arbitrary element from the set.
My mistake: arbitrary is not the same as random :(
Mario
--
http://mail.python.org/mailman/listinfo/python-list
Why wouldn't you use multiple apache instances?
On Fri, Oct 22, 2010 at 11:28 PM, Jeffrey Gaynor wrote:
> I have several different versions of a web app that run under Apache. The
> issue is that I need to have several different configurations available
> under several environments (such as Djang
Why not?
Java language may be dying, but I don't think Java virtual machine is.
On Thu, Oct 28, 2010 at 9:59 AM, Lawrence D'Oliveiro
wrote:
> In message
> <3fe80ac4-b595-4bcb-96b9-9138b1ec5...@l17g2000yqe.googlegroups.com>,
> TheFlyingDutchman wrote:
>
> > On Oct 27, 4:55 pm, Lawrence D'Oliveiro
r:
urllib2.URLError:
It works only with CERT_NONE (the default) but with this option i
could access to the service in insicure mode.
Have you some suggestions for my service?
Thanks. Regards.
--
Andrea Di Mario
--
http://mail.python.org/mailman/listinfo/python-list
to do this?
Thanks, regards.
--
Andrea Di Mario
--
http://mail.python.org/mailman/listinfo/python-list
Thanks Thomas, it is what i'm looking for.
Regards
--
Andrea Di Mario
--
http://mail.python.org/mailman/listinfo/python-list
e signal
> number that caused the termination; you can then log anything you
> want.
Hi, i understand, i've read that SIGKILL can't catch, but nothing
about SIGTERM.
If i use SIGCHLD, i will have difficult when parent receive a SIGTERM, or not?
Thanks, regards.
--
Andrea Di
On Sunday, November 19, 2017 at 2:05:12 PM UTC-5, Peng Yu wrote:
> Hi, R has the functions head() and str() to show the brief content of
> an object. Is there something similar in python for this purpose?
>
> For example, I want to inspect the content of the variable "train".
> What is the best wa
On Tuesday, December 5, 2017 at 8:33:52 PM UTC-5, nick martinez wrote:
> I have a question on my homework. My homework is to write a program in which
> the computer simulates the rolling of a die 50
> times and then prints
> (i). the most frequent side of the die
> (ii). the average die value o
On Wednesday, January 31, 2018 at 10:55:59 AM UTC-5, M.Haroon Ali wrote:
> from where we learn python for free of cost. i am begineer in python.plzz
> help me
And after you're done with the OFFICIAL tutorials; there thousands of excellent
free tutorials online. Just do some research.
If you're
I'm not sure I understand your question, but I 'think' you area talking about
executing dynamically chunks of code. If that is the case, there are a couple
of ways to do it. These are some links that might interest you:
http://stackoverflow.com/questions/3974554/python-how-to-generate-the-code-o
On Sunday, October 16, 2016 at 1:42:23 PM UTC-4, Ayush Saluja wrote:
> Hello I want to build a desktop application which retrieves data from server
> and stores data on server. I have basic experience of python and I dont know
> how to build that thing.
I agree with Martin's suspicion on you hav
On Monday, October 17, 2016 at 1:00:14 PM UTC-4, John Gordon wrote:
> In
> ayuchitsalu...@gmail.com writes:
>
> > Hello I want to build a desktop application which retrieves data from
> > server and stores data on server. I have basic experience of python and
> > I dont know how to build that th
I don't know much about these topics but, wouldn't soundex do the job??
On Thursday, November 3, 2016 at 12:18:19 PM UTC-4, Fillmore wrote:
> Hi there, apologies for the generic question. Here is my problem let's
> say that I have a list of lists of strings.
>
> list1:#strings are sort of s
On Friday, January 6, 2017 at 10:37:40 AM UTC-5, Ethan Furman wrote:
> On 01/06/2017 05:03 AM, Steve D'Aprano wrote:
>
> > what do we call the vertical and horizontal line elements? I want to make
> > them configurable, which means the user has to be able to pass an argument
> > that specifies the
On Friday, January 6, 2017 at 8:45:41 PM UTC-5, Mario R. Osorio wrote:
> On Friday, January 6, 2017 at 10:37:40 AM UTC-5, Ethan Furman wrote:
> > On 01/06/2017 05:03 AM, Steve D'Aprano wrote:
> >
> > > what do we call the vertical and horizontal line elemen
On Friday, July 13, 2018 at 11:16:44 AM UTC-4, Bart wrote:
> On 13/07/2018 13:33, Steven D'Aprano wrote:
> > On Fri, 13 Jul 2018 11:37:41 +0100, Bart wrote:
> >
> >> (** Something so radical I've been using them elsewhere since forever.)
> >
> > And you just can't resist making it about you and y
hmmm...He made an extremely kind comment a couple of days ago. It called my
attention because is the first one ever (coming from) ... Now I'm thinking he
might have just been sarcastic.
And BTW I myself have given a couple of sour responses every now and then. I
guess we all have our bad days o
On Sunday, April 10, 2016 at 2:01:00 PM UTC-4, Terry Reedy wrote:
> On 4/10/2016 1:05 PM, Ethan Furman wrote:
>
> > If you see offensive posts from him on the Usenet side please do not
> > respond.
>
> Just a reminder for those who, like me, prefer a newsgroup interface for
> python-list: gmane
Mel: Portuguese for honey
Drosis: from Greek hidrōs; to sweat
--
https://mail.python.org/mailman/listinfo/python-list
... so you decided to start the post already hijacked by yourself ...
very clever!!
On Friday, August 5, 2016 at 8:19:53 PM UTC-4, bream...@gmail.com wrote:
> On Friday, August 5, 2016 at 7:15:37 PM UTC+1, DFS wrote:
> > On 8/4/2016 6:41 PM, breamore...@gmail.com wrote:
> > > Fascinating stuff h
On Saturday, November 24, 2018 at 1:44:21 AM UTC-5, Chris Angelico wrote:
> On Sat, Nov 24, 2018 at 5:36 PM wrote:
> >
> > hello all,
> > please hepl me in the above program. python to implement Railway
> > Reservation System using file handling technique.
> >
> > System should perform below ope
On Monday, January 7, 2019 at 9:52:03 AM UTC-5, Dave wrote:
> I need to select a Python GUI. It needs to cover all of the desktops
> (Linux, Windows, Apple) and hopefully mobile (Android and Ios). I'm
> looking at Kivy, but have yet to find an example app. that has a native
> looking GUI (Wind
On Wednesday, January 2, 2019 at 1:05:44 PM UTC-5, Hüseyin Ertuğrul wrote:
> I don't know the software language at all. What do you recommend to beginners
> to learn Python.
> What should be the working systematic? How much time should I spend every day
> or how much time should I spend on a dail
You might want to check this project: https://pybee.org/
I've never used it but it shows promising.
BTW, I'm a diabetic myself and I would be very thankful if you could share your
application.
I'm currently using 2 Android apps:
StickBuddy offers a system to keep track of both where you pinch
Hi there Steve. Did you check BeeWare? (https://pybee.org/)
--
https://mail.python.org/mailman/listinfo/python-list
You will need to have java. BeeWare's VOC tool, a transpiler from python to
java, will do all the work for you so you don't even have know anything
about java, except installing and setting it up for your environment
Dtb/Gby
===
Mario R. Osorio
B.A.S. of Information Technolo
I am not an expert in BeeWare (I've never used it) but I've read a good
portion of their documentation and find it very interesting to say
the least. I am looking forward using it in the very near future.
On Fri, Feb 8, 2019 at 11:06 AM Mario R. Osorio
wrote:
> You will need
On Monday, May 13, 2019 at 8:32:38 AM UTC-4, Tristan Cribaro wrote:
> [image: image.png]so I have a project I have to work on that is due
> tomorrow for a lot of points towards my grade. The issue here is I've been
> trying to download Pillow and simple audio for my project and I keep
> getting the
On Saturday, June 29, 2019 at 8:40:06 AM UTC-4, josé mariano wrote:
> Dear all,
>
> I'm sure that this subject has been addressed many times before on this
> forum, but my poor knowledge of English and of computer jargon and concepts
> results on not being able to find the answer i'm looking for
On Thursday, October 24, 2019 at 4:29:59 PM UTC-4, Chris Angelico wrote:
> On Fri, Oct 25, 2019 at 7:20 AM DL Neil via Python-list
> wrote:
> >
> > Chris Angelico: [PSF's] 2019 Q2 Community Service Award Winner
> > http://pyfound.blogspot.com/2019/10/chris-angelico-2019-q2-community.html
> >
> > .
On Thursday, January 23, 2020 at 3:54:56 AM UTC-5, Z wrote:
> what is PLR?
PLR: Private Label Rights (https://en.wikipedia.org/wiki/Private_label_rights)
--
https://mail.python.org/mailman/listinfo/python-list
ython out of the box. Suggestions for plugins for Eclipse
> would also be nice.
I use wingIDE and as Alex said before is the best python IDE ever...
cheers
--
Gian Mario Tagliaretti
PyGTK GUI programming
http://www.parafernalia.org/pygtk/
--
http://mail.python.org/mailman/listinfo/python-list
Philippe C. Martin wrote:
> Is wxWidget now part of python ? or will it be ?
No, and *I hope* that if another toolkit has to replace Tkinter (will never
happen?) will be PyGTK... :)
cheers
--
Gian Mario Tagliaretti
PyGTK GUI programming
http://www.parafernalia.org/pygtk/
--
h
Alex Martelli wrote:
> Not without knowing more about your motivations for starting Python in
> the first place...
Alex, maybe trolling in this list? :)
> Alex
ciao
--
Gian Mario Tagliaretti
PyGTK GUI programming
http://www.parafernalia.org/pygtk/
--
http://mail.python.org/mailman
On Mon, 28 Nov 2005 18:15:25 +0100, [EMAIL PROTECTED] wrote:
> I have WinXP.
Bad for you :)
> I want to convert my PySonic recorded (raw) pcm format files to wav
> files. How can I do it ?
You can use -> http://www.pymedia.org/
cheers
--
Tagliaretti Gian Mario
PyGTK GUI prog
u see the dimension of the files...
cheers
--
Gian Mario Tagliaretti
PyGTK GUI programming
http://www.parafernalia.org/pygtk/
--
http://mail.python.org/mailman/listinfo/python-list
wrong
> [...]
Maybe you didn't get the fact the you won't see a flame starting between
python people and perl friends?
throw yourself somewhere and... Xah.flush()
--
Gian Mario Tagliaretti
PyGTK GUI programming
http://www.parafernalia.org/pygtk/
--
http://mail.python.org/mailman/listinfo/python-list
Chris Mattern wrote:
>
> It doesn't have OO, but it emulates in software!
> Better go with python, which has hardware OO. :-)
Chris don't feed the troll
--
http://mail.python.org/mailman/listinfo/python-list
u confess a solution once I
figure out what are you talking about :)
I will really appreciate and and all comments, ideas and recommendations … even
epithets!
Thanks a lot in advanced!
Mario R. Osorio
--
https://mail.python.org/mailman/listinfo/python-list
On Sunday, February 2, 2014 4:16:44 PM UTC-5, Charlie Winn wrote:
> Hey Guys i Need Help , When i run this program i get the 'None' Under the
> program, see what i mean by just running it , can someone help me fix this
>
>
>
> def Addition():
>
> print('Addition: What are two your numbers?
Just get better Laura...
--
https://mail.python.org/mailman/listinfo/python-list
I think you'd do better using the pyparsing library
On Friday, January 22, 2016 at 9:02:00 AM UTC-5, inhahe wrote:
> I hope this is an appropriate mailing list for BeautifulSoup questions,
> it's been a long time since I've used python-list and I don't remember if
> third-party modules are on to
I would create a RAM disk
(http://www.cyberciti.biz/faq/howto-create-linux-ram-disk-filesystem/),
generate all the path/files I want with any, or my own algorithm, run the
tests, unmount it, destroy it, be happy ... Whats wrong with that?? AFAIK, RAM
disks do not get logged, and even if they do
On Saturday, February 27, 2016 at 4:39:12 AM UTC-5, Steven D'Aprano wrote:
> The author of Requests, Kenneth Reitz, discusses his recent recovery from a
> MentalHealthError exception.
>
> http://www.kennethreitz.org/essays/mentalhealtherror-an-exception-occurred
>
> Although the connection to Pyt
On Friday, February 26, 2016 at 2:36:26 PM UTC-5, Anita Goyal wrote:
> This course will help you to expertise the usage of Python in Data Science
> world.
>
> Carter your Python Knowledge so that it can be utilized to get the Insights
> of Data using Methodologies and Techniques of Data Science.
On Friday, February 26, 2016 at 9:57:21 AM UTC-5, Wingware wrote:
> Hi,
>
> Wingware has released version 5.1.10 of Wing IDE, our cross-platform
> integrated development environment for the Python programming language.
>
> Wing IDE features a professional code editor with vi, emacs, visual
> st
On Tuesday, March 15, 2016 at 9:55:27 PM UTC-4, jj0ge...@gmail.com wrote:
> You have apparently mistaken me for someone who's worried. I don't use
> Python, I was just curious as to why a construct that is found, not only to
> be useful in 95% of other languages, but is generally considered more
On Saturday, March 26, 2016 at 5:59:04 AM UTC-4, Dennis Ngeno wrote:
> My programs have never combile, they keep telling me , systax error even
> after copy pasting
No pun intended, but I hope you are not typing your code like you typed your
message.
OTOH, python code is not supposed to be compi
On Tuesday, October 28, 2014 12:25:13 AM UTC-4, Terry Reedy wrote:
> On 10/27/2014 11:10 AM, emmanuel...@gmail.com wrote:
>
> > THIS IS THE LIST OF BOY NAMES
> > Jacob
> > ...
>
> Writing hundreds of unnecessary lines at minimum inconsiderate. Please
> don't do it.
>
> --
> Terry Jan Reedy
On Wednesday, May 20, 2015 at 2:09:59 PM UTC-4, Denis McMahon wrote:
> On Wed, 20 May 2015 17:14:15 +0530, Parul Mogra wrote:
>
> > Hello everyone,
> > My objective is to create large amount of data files (say a million
> > *.json files), using a pre-existing template file (*.json). Each file
> >
Chris. Este grupo es en Ingles. La verdad no se si existen grupos en español,
pero juraria que si.
Entiendo que quieres enseñarle python a tu hijo. Aca te envio algunos recursos.
Espero que te sirvan:
https://silvercorp.wordpress.com/2012/05/27/pasos-de-instalacion-de-python-en-windows/
http:/
?Quien es Usted y por que pregunta?
Dtb/Gby
===
Mario R. Osorio
“If I had asked people what they wanted, they would have said faster
horses.”
― Henry Ford
On Fri, May 29, 2015 at 1:33 AM, Laura Creighton wrote:
> Sabe usted acerca de estas páginas?
> https://mail.python.org/m
You are not specifying how are you doing the comparison, but here is my 2 cents:
Import the foxpro tables into the MySQL database and then you'll be able to do
your update in a single SQL statement, which, even for that many records would
take some only a few seconds, then delete th imported da
= checkers.FilePasswordDB('passwords.txt',
caseSensitive=True, cache=True)
p.registerChecker(c)
factory = pb.PBServerFactory(p)
reactor.listenSSL(int(PORT), factory, myContextFactory)
reactor.run()
--
Andrea Di Mario
--
http://mail.python.org/mailman/listinfo/python-list
I am pleased to announce version 0.4.0 of the Python bindings for Goocanvas.
This is the first release and it's available at:
https://developer.berlios.de/projects/pygoocanvas/
Contributors for this release:
==
- Gian Mario Tagliaretti (module creation, c
ort, imaging, documentation.
agreed
> Then there are two schools: PyQT and wxPython -
you completely forgot pygtk. or you didn't want to mention it :)
> both very easy to learn
I think that pygtk is the easiest
ciao
--
Gian Mario Tagliaretti
--
http://mail.python.org/mailman/listinfo/python-list
walterbyrd wrote:
> I have noticed that there is also pygtk-web project, I suppose that is
> what you use for the web?
It's the pygtk web site as you see it here www.pygtk.org
cheers
--
Gian Mario Tagliaretti
--
http://mail.python.org/mailman/listinfo/python-list
.g.:
one = One(a, b)
but python will silently ignore them and you probably won't like it...
cheers
--
Gian Mario Tagliaretti
--
http://mail.python.org/mailman/listinfo/python-list
arguments?
sorry, my bad, that beauvoir was python 2.2 it was fixed in python 2.3 (I
didn't know since I always override __init__) and it will raise a TyoeError
as you have pointed out.
cheers
--
Gian Mario Tagliaretti
--
http://mail.python.org/mailman/listinfo/python-list
201 - 300 of 319 matches
Mail list logo