Re: Python Magazine

2013-06-12 Thread Jonas Geiregat
On 31 May 2013, at 13:11, DRJ Reddy wrote: > Hello all, >Was busy with work. Finally finished the job of registering the domain > name. > Will be live soon. The url is http://pythonmagazine.org. Hope we will be live > soon. I was surprised when I saw it is running on ASP.NET, can this be

Re: Split a list into two parts based on a filter?

2013-06-10 Thread Jonas Geiregat
On 11 Jun 2013, at 01:08, Fábio Santos wrote: > > On 10 Jun 2013 23:54, "Roel Schroeven" wrote: > > > > You could do something like: > > > > new_songs, old_songs = [], [] > > [(new_songs if s.is_new() else old_songs).append(s) for s in songs] > > > > But I'm not sure that that's any better than

Re: Why is it impossible to create a compiler than can compile Python to machinecode like C?

2013-02-28 Thread Jonas Geiregat
On do, feb 28, 2013 at 12:25:07pm -0800, kramer65 wrote: > Hello, > > I'm using Python for a while now and I love it. There is just one thing I > cannot understand. There are compilers for languages like C and C++. why is > it impossible to create a compiler that can compile Python code to > ma

[Ann] pyBug - Python Belgian User Group

2012-09-18 Thread Jonas Geiregat
It's located at: https://groups.google.com/forum/?fromgroups#!forum/python-belgian-user-group You can also subscribe by sending an email to python-belgian-user-group+subscr...@googlegroups.com Hope to see you there. Yours sincerely, Jonas Geiregat.-- http://mail.python.org/mailman/listinfo/python-list

Re: Apple Mac OS X 10.6 support & compatability with Python 3 ?

2009-12-24 Thread Jonas Geiregat
gt; -- > http://mail.python.org/mailman/listinfo/python-list Met vriendelijke groeten, Jonas Geiregat jo...@geiregat.org -- http://mail.python.org/mailman/listinfo/python-list

Possibly something wrong with mailman ?

2009-12-01 Thread Jonas Geiregat
I'm getting lot's of messages to: undisclosed-recipients:; Which horribly scrambles my email, since no filters are applied to them. -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between python and wxWidgets.. Help needed...

2009-11-19 Thread Jonas Geiregat
Op 19-nov-09, om 09:42 heeft Jebagnana Das het volgende geschreven: Hi Friends, I want to thank you all for doing a great job.. I seek your suggestions and valuable guidance regarding two things. 1) I'm using python 3.1.1 and wxWidgets for GUI development in my project ..

Re: Email client in Pyhton

2005-08-24 Thread Jonas Geiregat
[EMAIL PROTECTED] wrote: > Hi grp, > I new to this grp and python too. > i have started writing few python scripts myself. > > now i am planning to write a bear minimum email client in > pyhton. i found the smtp module of python could serve my > pupose. I can send message using mails using the smt

Re: High Level FTP library

2005-08-23 Thread Jonas Geiregat
Paulo Pinto wrote: > Hello, > > Is there any Python library similar to NET::FTP from Perl? > ftplib seems too lowlevel. > > I already found a few, but would like to get one that is > endorsed by the community. > > Thanks, > Paulo libftp sucks just look at how it's written such evil code! Not th

Re: gtkmozembed in fedora core 3

2005-08-23 Thread Jonas Geiregat
Martin DeMello wrote: > Could someone help me get gtkmozembed working under fc3? The only > available rpms need gnome-python2 >= 2.9 and fc3 ships with 2.6. I can't > find any fc3 rpms to upgrade gnome-python2 and I can't quite figure out > what I'd need to compile just to install gtkmozembed and t

Re: Python and the web

2005-08-23 Thread Jonas Geiregat
Terry Hancock wrote: > > Yes. If you're into killer apps, try out Zope. But it does have a learning > curve. > There are probably a dozen or so alternatives that are all "smaller and > quicker > to learn". > Very true zope is a killer app, but different from all the other well know server si

Re: check whether directory is readable

2005-08-23 Thread Jonas Geiregat
eels wrote: > Hello, > how can I check whether a directory is readable or not. Are there > differences between unix and windows? As far as I know there aren't any differences, code: import os if access("/root", os.R_OK): print "You are able to read the /root dir" -- http://mail.python.