Re: Python 2.6: Determining if a method is inherited

2008-10-05 Thread Valentino Volonghi aka Dialtone
is Bla.hello.im_func False Which to me also makes sense. If it's inherited I expect it to be the very same function object of one of the bases (which you can get with inspect.getmro(Clazz)). On the other end if you override it it's not the same function object so it won't return

Re: Python to use a non open source bug tracker?

2006-10-04 Thread Valentino Volonghi aka Dialtone
hink SQLite would be a suitable platform for it? Considering that trac can also run on postgres or mysql and also considering that both of these databases have enough tools to deal with backups I think it's a non issue. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog

Re: Python to use a non open source bug tracker?

2006-10-04 Thread Valentino Volonghi aka Dialtone
on. Backing up a sqlite database is pretty easy. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com New Pet: http://www.stiq.it -- http://mail.python.org/mailman/listinfo/python-list

Re: Python vs. Lisp -- please explain

2006-02-19 Thread Valentino Volonghi aka Dialtone
Steven D'Aprano <[EMAIL PROTECTED]> wrote: > By that logic, all languages are interpreted. What do you think happens to > the machinecode? Interpreted to transistors state by an internal mapping in the CPU opcode ==> input configuration. -- Valentino Volonghi aka Dialton

Re: Still Loving Python

2005-12-14 Thread Valentino Volonghi aka Dialtone
.. def on_logster__destroy(self, window): p = Proxy('my_ui.glade') And it also provide an easy and flexible way to integrate additional custom widgets in the design process. Of course it's always possible to build powerful GUIs without using designers at all: http://www.le

Re: Python Jabber client?

2005-09-08 Thread Valentino Volonghi aka Dialtone
abber protocol implementation inside it but it's very simple (and for example doesn't support SASL). -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Python compiled?

2005-09-05 Thread Valentino Volonghi aka Dialtone
compiled to native code, the other is compiled to bytecode and JITted or interpreted and python is compiled to bytecode and interpreted or (with psyco) JITted. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mai

Re: Release of PyPy 0.7.0

2005-08-28 Thread Valentino Volonghi aka Dialtone
space), the flowgraph object space and the trace object space that traces each operation done. > Either way, this looks like a great milestone - congratulations to the > entire team. (I remember PyPy being met with skepticism as to whether > it could even be done! :-) Indeed. -- V

Re: Python for Webscripting (like PHP)

2005-08-18 Thread Valentino Volonghi aka Dialtone
see that all the links in there end in .py. Blogger is almost completely built with python. Google is also one of the members of the PSF. What should be demonstrated? -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com http://weever.berlios

Re: Web Framework Reviews

2005-07-19 Thread Valentino Volonghi aka Dialtone
content"] ] ] This is not harder than normal xhtml tags to follow. plus you don't have to remember what tag you are closing :) -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Web Framework Reviews

2005-07-19 Thread Valentino Volonghi aka Dialtone
otient is entirely built using stan and it's very big). Templating engines like ZPT prefer to put some code in the template, Nevow prefers to put code in python and allow you to write some xhtml in python too. python is easier to manage and less likely to be screwed by any designer that doesn&#x

Re: Web Framework Reviews

2005-07-19 Thread Valentino Volonghi aka Dialtone
r return an object from a child_foobar method. Or override rend.Page.childFactory(self, ctx, segment) to return an object in a dynamic way depending on the value of the segment argument. It seems to me that you really never tracked Nevow, your information is very incomplete. I think you should co

Re: Web Framework Reviews

2005-07-19 Thread Valentino Volonghi aka Dialtone
h or ZPT means that you never used it. Nevow is exactly what you define as a web framework, and it would be quite interesting to know why you didn't put it in that section. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.4 Blog: http://vvolonghi.blogspot.com http://weever.berlios.d

Re: Lisp-likeness

2005-03-15 Thread Valentino Volonghi aka Dialtone
terleave calls to the individual functions. In [21]: a = addn(4) In [22]: b = addn(5) In [23]: c = addn(25) In [24]: a(1) Out[24]: 5 In [25]: b(1) Out[25]: 6 In [26]: c(1) Out[26]: 26 -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.8 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Python becoming less Lisp-like

2005-03-15 Thread Valentino Volonghi aka Dialtone
are not able to count them all since there are almost not special cases. But many things that could be done in a better way (this is for sure, python is far from perfect, but it 'sucks' a lot less then everything else). -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.8 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Python becoming less Lisp-like

2005-03-14 Thread Valentino Volonghi aka Dialtone
less" which means there are probably so many that you weren't able to count them. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.8 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Python and "Ajax technology collaboration"

2005-02-24 Thread Valentino Volonghi aka Dialtone
an image uploader and so on. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.8 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Python and "Ajax technology collaboration"

2005-02-23 Thread Valentino Volonghi aka Dialtone
quot;Quote & Reply" function is done with XMLHttpRequest and Python. Implementing this stuff in the forum with Nevow ( the framework created by Donovan who I help to develop ) was almost effortless. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.8 Blog: http://vvolon

Re: re-entrancy question

2005-02-08 Thread Valentino Volonghi aka Dialtone
ed-python ML. This very same message was posted on the twisted mailing list. The answer anyway was already given on the other list: there are no re-entrancy problems :). -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.7 Blog: http://vvolonghi.blogspot.com http://weever.berlios

Re: re-entrancy question

2005-02-08 Thread Valentino Volonghi aka Dialtone
different beast that happens to have its own implementation of RPC. How would the OP be better investigating something different, that he probably doesn't even need? Your comment would be pertinent only if it considered Perspective Broker against pyro, and I admit I don't know how they compar

Re: Nevow Tutorial and sample app

2005-01-06 Thread Valentino Volonghi aka Dialtone
hich uses also xmlrpc and smtp protocols, or live pages like chatola. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.7 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Continuations Based Web Framework - Seaside.

2005-01-02 Thread Valentino Volonghi aka Dialtone
module (from Armin Rigo) also the back button will work. I've also already posted an url to the svn sandbox with a working example inside. -- Valentino Volonghi aka Dialtone Now Running MacOSX 10.3.7 Blog: http://vvolonghi.blogspot.com http://weever.berlios.de -- http://mail.python.org/mailman/listinfo/python-list

Re: Continuations Based Web Framework - Seaside.

2005-01-02 Thread Valentino Volonghi aka Dialtone
Mike Thompson wrote: > I googled for the python spin-off but didn't find one. Closest I found Get Nevow with wolf (flow backwards, in the svn sandbox). http://www.divmod.org/cvs/sandbox/phunt/wolf/?root=Nevow You will need stackless or greenlet if using CPython. -- Valentino Volo

Re: Web forum (made by python)

2004-12-20 Thread Valentino Volonghi aka Dialtone
<[EMAIL PROTECTED]> wrote: > Don't see anything in PyPI. Do I have to write everything myself? Gah. > I need more beer. I'm writing it in my spare time (which is not enough however). You can find the url in the sign. -- Valentino Volonghi aka Dialtone Now Running Ma