|
First
|
Prev |
Next
|
Last
Pages: 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
How to pickle bound methods Hi, I would like to know how to pickle a bound method?? Thanks, Srini Meet people who discuss and share your passions. Go to http://in.promos.yahoo.com/groups/bestofyahoo/ ... 3 Jul 2008 05:19
Python and timezones I'm trying to write some code to deal with world timezones, and I'm getting a strange result. America/Iqaluit should not be showing up in UTC+00:00, but it is. Can anyone see what's wrong with this code? import time from datetime import datetime import os import pytz def getZoneNamesOnThisComputer(): ... 2 Jul 2008 02:41
Marketingassistent Marketingassistentin stellenangebot praktikum stellenanzeigen deutschland stellenangebote geschaeftsfuehrer Marketingassistent Marketingassistentin stellenangebot praktikum stellenanzeigen deutschland stellenangebote geschaeftsfuehrer + + + ARBEITSANGEBOTE IN DEUTSCHLAND http://WWW.ARBEITSANGEBOT-DEUTSCHLAND.DE http://WWW.ARBEITSANGEBOT-DEUTSCHLAND.DE + + + STELLENANGEBOTE IN DEUTSCHLAND http://WWW.STEL... 2 Jul 2008 00:38
SQLite and Python 2.4 I'm confused. (Not a new experience). I've got a web application running under Zope. I use the Wing IDE for testing and debugging. When trying to recreate problems that come up on the web, I wrote some little routines that pull my cookies out of the Firefox cookies.txt file into my code. That way, I'm working w... 7 Jul 2008 18:41
Required items in a form What I'm trying to do is essentially force a user to fill in required items in a form, which will be saved to a database. How can I get it so that once the user clicks "OK" on the dialog box, it transfers control back to the form, and not save the empty fields into the database? ... 4 Jul 2008 01:50
AttributeError with embedded Python I've embedded Python in an extension for a program we are using here at work. And I'm a bit stumped as to why I am getting an AttributeError only in the embedded Python. First, a bit of what I am doing. We use a simulator for a microprocessor we are using in our systems. Our simulator allows for extensions th... 1 Jul 2008 18:30
Attribute reference design Hello. I think I'm aware of how attribute access is resolved in python. When referencing a class instance attribute which is not defined in the scope of the instance, Python looks for a class attribute with the same name. (For assignment or deletion this is not the case, thankfully.) I've been trying to understan... 2 Jul 2008 06:45
How to make a function associated with a class? Hi, I have a class called "vector". And I would like to define a function "dot" which would return a dot product of any two "vectors". I want to call this function as follow: dot(x,y). Well, I can define a functions "dot" outside the class and it works exactly as I want. However, the problem is that this func... 7 Jul 2008 17:39
Please check my understanding... list.append([1,2]) will add the two element list as the next element of the list. list.extend([1,2]) is equivalent to list = list + [1, 2] and the result is that each element of the added list becomes it's own new element in the original list. Is that the only difference? From the manual: s.extend(x) | ... 1 Jul 2008 17:29
Convert string to char array How do I convert a string to a char array? I am doing this so I can edit the string received from an sql query so I can remove unnecessary characters. ... 1 Jul 2008 16:27 |