My apologies...

Maria Martino quetpie75 at yahoo.com
Wed Oct 10 10:42:47 EDT 2001


Hello

I apologize to everyone in the group that my posting
came up 4 times. To be honest, I did not mean to post
more than once. It was a little tricky for me trying
to figure out how to post on the usenet site. I
thought I was posting in different areas. I am truly
sorry if it came across as annoying. I do not
want anyone to get that idea. I am just trying to find
people for this opportunity. Anyhelp is greatly
appreciated. Thank you!


Maria Martino
IT Recruiter
Kelly Services
212-984-1129



--- python-list at yahoogroups.com wrote:
> ------------------------ Yahoo! Groups Sponsor
> ---------------------~-->
> Pinpoint the right security solution for your
> company- Learn how to add 128- bit encryption and to
> authenticate your web site with VeriSign's FREE
> guide!
>
http://us.click.yahoo.com/yQix2C/33_CAA/yigFAA/saFolB/TM
>
---------------------------------------------------------------------~->
> 
> There are 25 messages in this issue.
> 
> Topics in this digest:
> 
>       1. Deploy without distribute python source
> code
>            From: python_only at yahoo.com (Goh S H)
>       2. Microhydrin® & Crystal Energy® Special +
> BONUS!!!
>            From: health at heylady.com
>       3. newbe question
>            From: John Thingstad
> <john.thingstad at chello.no>
>       4. Re: Deploy without distribute python source
> code
>            From: <kosh at aesaeion.com>
>       5. py2exe or mcmillan for creating a exe file
>            From: "Song" <bagdadcafe59 at hotmail.com>
>       6. Re: YOU ARE ALL GAY!
>            From: Geoffrey Pointer
> <geoffrey at bigpond.net.au>
>       7. changing `import' to use other than .py
>            From: Harald Kirsch
> <kirschh at lionbioscience.com>
>       8. Re: Python questions -> compiler and
> datatypes etc
>            From: Billy <billy_bill_1 at yahoo.com>
>       9. swocket! help op python's expert
>            From: "Bartosz Aninowski" <bart at sonik.pl>
>      10. Re: Curious assignment behaviour
>            From: -$Paul$- at verence.demon.co.uk (Paul
> Wright)
>      11. (2nd guidance) Let's get $5,000.00 by
> responding to a questionnaire.- VLC Inc.
>            From: a_saka at vlcank.co.jp
>      12. Quixote+mod_python vs. mod_python+htmlgen's
> templatepage
>            From: rdrew at cia-group.com (Ray Drew)
>      13. Sockets
>            From: hugomartires at hotmail.com (Hugo
> Martires)
>      14. LIKE missing in gadfly
>            From: cdelarue at bigfoot.com (Christophe
> Delarue)
>      15. Newbie: tkinter question
>            From: attila.pletyak at anemo.com (Attila
> Pletyak)
>      16. Re: Spewing SQL query resultset to HTML
> table...
>            From: "Steve Holden"
> <sholden at holdenweb.com>
>      17. Re: Sockets
>            From: "Steve Holden"
> <sholden at holdenweb.com>
>      18. Re: changing `import' to use other than .py
>            From: Gordon McMillan <gmcm at hypernet.com>
>      19. Re: Sockets
>            From: Gordon McMillan <gmcm at hypernet.com>
>      20. Re: LIKE missing in gadfly
>            From: Gordon McMillan <gmcm at hypernet.com>
>      21. Re: Newbie: tkinter question
>            From: claird at starbase.neosoft.com
> (Cameron Laird)
>      22. Re: simple threading (or not as the case
> may be)
>            From: Mark Robinson
> <m.1.robinson at herts.ac.uk>
>      23. Python, XML, and databases
>            From: <adina_levin at mindspring.com>
>      24. Re: How to install on NT without write
> permissions to c:\winnt
>            From: Gerhard Häring
> <gh_pythonlist at gmx.de>
>      25. Re: swocket! help op python's expert
>            From: Gerhard Häring
> <gh_pythonlist at gmx.de>
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 1
>    Date: 10 Oct 2001 02:38:26 -0700
>    From: python_only at yahoo.com (Goh S H)
> Subject: Deploy without distribute python source
> code
> 
> Hi all,
>    I would like to deloy some projects which making
> use of Python, but
> I do not want to distribute Python source code due
> to several reasons.
> Is there any ways to do this? Is it portable to
> distribute .pyc?
> 
> Regards,
> Goh
> -- 
> http://mail.python.org/mailman/listinfo/python-list
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 2
>    Date: Wed, 10 Oct 2001 05:02:41 -0500
>    From: health at heylady.com
> Subject: Microhydrin® & Crystal Energy® Special +
> BONUS!!!
> 
> 
> 
> [This message is not in displayable format]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 3
>    Date: Wed, 10 Oct 2001 11:39:44 +0200
>    From: John Thingstad <john.thingstad at chello.no>
> Subject: newbe question
> 
> I wrote the following function to use polymorphism.
> 
> 
> def rootClassName(var):
>     """Return the name of the root of a sigle
> inheretance class tree.
>     If multiple inheritance is used the leftmost
> class is traversed."""
>     if type(var) is ClassType:
>         cls = var
>         while len(cls.__bases__) != 0:
>             cls = cls.__bases__[0]
>         return cls.__name__
>     else:
>         return ""
> 
> 
> Is there a built in function to do this ?
>  
> 
> 
> -- 
> http://mail.python.org/mailman/listinfo/python-list
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 4
>    Date: Wed, 10 Oct 2001 03:46:02 -0600 (MDT)
>    From: <kosh at aesaeion.com>
> Subject: Re: Deploy without distribute python source
> code
> 
> 
> 
> Designing the webpages of tomorrow
> http://webme-eng.com
> Designing the MMORPGS of tomorrow
> http://worldforge.org
> 
> On 10 Oct 2001, Goh S H wrote:
> 
> > Hi all,
> >    I would like to deloy some projects which
> making use of Python, but
> > I do not want to distribute Python source code due
> to several reasons.
> > Is there any ways to do this? Is it portable to
> distribute .pyc?
> >
>  .pyc files are only for that version of python and
> won't work on others
> overall it is not a good idea. They can also be
> reverse engineered
> trivially if that is what you are worried about. You
> are probably better
> off using one of the freeze type programs.
> 
> > Regards,
> > Goh
> > --
> >
> http://mail.python.org/mailman/listinfo/python-list
> >
> 
> 
> -- 
> 
=== message truncated ===


__________________________________________________
Do You Yahoo!?
Make a great connection at Yahoo! Personals.
http://personals.yahoo.com




More information about the Python-list mailing list