First
|
Prev |
Next
|
Last
Pages: 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
Windows7 run python script / sub process with elevated privileges Hi, I have a small python script, which has been started as normal non privileged user. At a later point in time it would like to start another python script with elevated privileges. How can I write my code such, that I will get the privilege elevation prompt and I can start a sub process / python function... 6 May 2010 05:15
Help needed in downloading Brown corpus Hi all I'm a masters student in NLP. I needed to download the Brown corpus. I'm unable to download from nltk.org with the python CLI. My network connection is behind a proxy server so it's creating a problem. Since I don't know a bit of python, so unable to figure a way out. Can someone help me in this regard eith... 2 May 2010 02:19
ANN: expy 0.6.5 released! EXPY is an express way to extend Python! EXPY provides a way to extend python in an elegant way. For more information and a tutorial, see: http://expy.sourceforge.net/ What's new: 1. Correct treatment of __init__ method. 2. Give warnings of missing Py_INCREF on appropriate special type methods. 3. Docu... 30 Apr 2010 21:52
Danny L. HI im looking for a perscription of Oxycontin 80 mg and was wondering if you could supply me. I have knee surgery and i cannot afford the medication. Can you tell me how much you would charge? Thnak you for you time, Sincerely, Danny Lovo Zandosin wrote: Order Oxycontin 3 days delivery. Oxycontin on... 30 Apr 2010 20:45
Inheritable computed class attributes? I want to define a class attribute that is computed from other class attributes. Furthermore, this attribute should be inheritable, and its value in the subclasses should reflect the subclasses values of the attributes used to compute the computed attribute. I tried the following: class Spam(object): ... 30 Apr 2010 19:39
Access class from staticmethod Is that possible? class A(object): @staticmethod def set_b(x): # A.b = x, without knowing A is "A" pass Thomas ... 30 Apr 2010 16:16
External Hashing [was Re: matching strings in a large set ofstrings] On 04/30/2010 12:51 PM, Helmut Jarausch wrote: I think one could apply an external hashing technique which would require only very few disk accesses per lookup. Unfortunately, I'm now aware of an implementation in Python. Does anybody know about a Python implementation of external hashing? While you don'... 30 Apr 2010 17:24
External Hashing Helmut Jarausch <jarausch(a)igpm.rwth-aachen.de> writes: I think one could apply an external hashing technique which would require only very few disk accesses per lookup. Unfortunately, I'm now aware of an implementation in Python. Does anybody know about a Python implementation of external hashing? SQLi... 30 Apr 2010 15:05
External Hashing [was Re: matching strings in a large set of strings] I think one could apply an external hashing technique which would require only very few disk accesses per lookup. Unfortunately, I'm now aware of an implementation in Python. Does anybody know about a Python implementation of external hashing? Thanks, Helmut. -- Helmut Jarausch Lehrstuhl fuer Numerische ... 30 Apr 2010 13:56
Python dot-equals (syntax proposal) At least a few times a day I wish python had the following shortcut syntax: vbl.=func(args) this would be equivalent to vbl = vbl.func(args) example: foo = "Hello world" foo.=split(" ") print foo # ['Hello', 'world'] and I guess you could generalize this to vbl.=[some text] # vbl = vbl.[some ... 3 May 2010 14:14 |