|
First
|
Prev |
Next
|
Last
Pages: 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
Impossible to change methods with special names of instances ofnew-style classes? Hi python-list, I've just started using new-style classes and am a bit confused as to why I can't seem to alter methods with special names (__call__, etc.) of new-style class instances. In other words, I can do this: class Z: .... pass .... z = Z() z.__call__ = lambda : 33 z() 33 B... 10 Jul 2008 03:08
Reportlab Image object opens filehandles Daniel de Sousa Barros wrote: Hi Mr Robin, I saw your post: http://mail.python.org/pipermail/python-list/2003-September/224781.html I'm trying to append more than 1000 images into one PDF report, but i get the IOError: Too many... know you a solution for it? Sorry by my english.... i... 10 Jul 2008 20:38
jobangebote arbeitsamt jobs im ausland krankenversicherung arbeit im ausland jobs ins ausland jobangebote arbeitsamt jobs im ausland krankenversicherung arbeit im ausland jobs ins ausland + + + ARBEITSANGEBOTE IM AUSLAND http://WWW.STELLENANGEBOT-AUSLAND.DE http://WWW.STELLENANGEBOT-AUSLAND.DE + + + AUSLANDSJOBS ONLINE FINDEN http://WWW.AUSLANDSJOBS-24.DE http://WWW.AUSLANDSJOBS-24.DE ... 8 Jul 2008 17:12
Logger Configuration "Robert Rawlins" <robert.rawlins(a)thinkbluemedia.co.uk> writes: Hello guys, I?ve attached an example of my logging configuration file for you to look at. The problem I?m experiencing is that the log files are not rotating as I would expect them to, they just keep growing and growing. ... 8 Jul 2008 16:11
Python for Kids Pretty cool!! Our base will be *much* bigger in about twenty years. I remember doing Basic on my dads Apple IIe. http://wiki.laptop.org/go/Pippy#Summary ... 15 Jul 2008 20:35
problem with Tkinter after installing Python 2.5.2 on UBUNTU I just installed Python 2.5.2 on UBUNTU Linux. It seems to work, however I don't seem to have access Tkinter. This is the result of "import Tkinter": Python 2.5.2 (r252:60911, Jul 7 2008, 12:39:49) [GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2 Type "help", "copyright", "credits" or "license" for more informatio... 8 Jul 2008 14:07
plugins using cvs/distutils? Hi. I have an open-source application development environment that I would like to enable an automated package download system for (like downloadable plugins), using sourceforge as its repository. My software will have a menu-based popup window, that will list the packages (Applications) available through the proje... 10 Jul 2008 13:24
No Exceptions Robert Rawlins wrote: Morning Guys, This morning I�ve been having a strange issue where my application doesn�t appear to raise any exceptions. Even when manually placing code in the application which raises an exception explicitly like: Raise Exception, �This is a test exception� The app... 8 Jul 2008 12:04
Relative Package Import mypackage/ __init__.py push/ __init__.py dest.py feed/ __init__py subject.py In subject.py I have from ..push import dest But i receive the error: Caught exception importing module subject:... 10 Jul 2008 08:14
Logging to zero or more destinations In the Python 2.5 Library Reference, section 14.5.3 (Logging to multiple destinations), an example is given of logging to both a file and the console. This is done by using logging.basicConfig() to configure a log file, and then calling logging.getLogger('').addHandler(console) to add the console. However, in s... 9 Jul 2008 11:38 |