User Brian - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T00:35:33Zhttp://stackoverflow.com/feeds/user/9493http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797806/parsing-a-hex-formated-dec-32-bit-single-precision-floating-point-value-in-python/1798241#17982410Answer by Brian for Parsing a hex formated DEC 32 bit single precision floating point value in pythonBrian2009-11-25T16:41:05Z2009-11-25T16:41:05Z<p>Is it definitely a DEC32 value? The sign bit seems to be 1, which indicates negative by this format. However, you do get a result very close to your 108 value if you ignore this and assume that the exponent bias is 15, retaining the 0.1 factor on the mantissa:</p>
<pre><code>def decode(x):
exp = (x>>30) & 0xff
mantissa = x&((2**24)-1)
return 0.1 * mantissa * (2**(exp-15))
>>> decode(0xD44393DB)
108.12409668
</code></pre>
http://stackoverflow.com/questions/186472/from-x-import-a-versus-import-x-x-a/186813#1868133Answer by Brian for from X import a versus import X; X.aBrian2008-10-09T11:24:46Z2009-11-19T14:33:55Z<p>There are uses for both cases, so I don't think this is an either-or issue.
I'd consider using from module <code>import x,y,z</code> when:</p>
<ul>
<li><p>There are a fairly small number of things to import</p></li>
<li><p>The purpose of the functions imported is obvious when divorced from the module name. If the names are fairly generic, they may clash with others and tell you little. eg. seeing <code>remove</code> tells you little, but <code>os.remove</code> will probably hint that you're dealing with files.</p></li>
<li><p>The names don't clash. Similar to the above, but more important. <strong>Never</strong> do something like:</p>
<pre><code> from os import open
</code></pre></li>
</ul>
<p><code>import module [as renamed_module]</code> has the advantage that it gives a bit more context about what is being called when you use it. It has the disadvantage that this is a bit more cluttered when the module isn't really giving more information, and is slightly less performant (2 lookups instead of 1).</p>
<p>It also has advantages when testing however (eg. replacing os.open with a mock object, without having to change every module), and should be used when using mutable modules, e.g.</p>
<pre><code>import config
config.dburl = 'sqlite:///test.db'
</code></pre>
<p>If in doubt, I'd always go with the <code>import module</code> style.</p>
http://stackoverflow.com/questions/772124/what-does-the-python-ellipsis-object-do/773472#7734727Answer by Brian for What does the Python Ellipsis object do?Brian2009-04-21T16:26:07Z2009-11-17T04:26:20Z<p>This came up in another <a href="http://stackoverflow.com/questions/752602/slicing-in-python-expressions-documentation">question</a> recently. I'll elaborate on my <a href="http://stackoverflow.com/questions/752602/slicing-in-python-expressions-documentation/753260#753260">answer</a> from there:</p>
<p><a href="http://docs.python.org/dev/library/constants.html#Ellipsis" rel="nofollow">Ellipsis</a> is an object that can appear in slice notation. For example:</p>
<pre><code>myList[1:2, ..., 0]
</code></pre>
<p>Its interpretation is purely up to whatever implements the <code>__getitem__</code> function and sees <code>Ellipsis</code> objects there, but its main (and intended) use in in the <a href="http://numpy.scipy.org/" rel="nofollow">numeric python</a> extension, which adds a multidementional array type. Since there are more than one dimensions, slicing becomes more complex than just a start and stop index; it is useful to be able to slice in multiple dimentions as well. eg, given a 4x4 array, the top left area would be defined by the slice "[:2,:2]"</p>
<pre><code>>>> a
array([[ 1, 2, 3, 4],
[ 5, 6, 7, 8],
[ 9, 10, 11, 12],
[13, 14, 15, 16]])
>>> a[:2,:2] # top left
array([[1, 2],
[5, 6]])
</code></pre>
<p>Extending this further, Ellipsis is used here to indicate a placeholder for the rest of the array dimensions not specified. Think of it as indicating the full slice [:] for all the dimentions in the gap it is placed, so for a 3d array, <code>a[...,0]</code> is the same as <code>a[:,:,0]</code> and for 4d, <code>a[:,:,:,0]</code>. Similarly <code>a[0,...,0]</code> is <code>a[0,:,:,0]</code> (with however many colons in the middle make up the full number of dimensions in the array)</p>
<p>Interestingly, in python3, the Ellipsis literal (...) is usable outside the slice syntax, so you can actually write: </p>
<pre><code>>>> ...
Ellipsis
</code></pre>
<p>Other than the various numeric types, no, I don't think its used. As far as I'm aware, it was added purely for numpy use and has no core support other than providing the object and corresponding syntax. The object being there didn't require this, but the literal "..." support for slices did.</p>
http://stackoverflow.com/questions/1601269/python-how-to-make-a-completely-unshared-copy-of-a-complicated-list-deep-copy/1601774#16017743Answer by Brian for Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)Brian2009-10-21T15:49:41Z2009-10-22T06:27:07Z<p>To convert an existing list of lists to one where nothing is shared, you could recursively copy the list.</p>
<p><code>deepcopy</code> will not be sufficient, as it will copy the structure as-is, keeping <em>internal</em> references as references, not copies.</p>
<pre><code>def unshared_copy(inList):
if isinstance(inList, list):
return list( map(unshared_copy, inList) )
return inList
alist = unshared_copy(your_function_returning_lists())
</code></pre>
<p>Note that this assumes the data is returned as a list of lists (arbitrarily nested).
If the containers are of different types (eg. numpy arrays, dicts, or user classes), you may need to alter this.</p>
http://stackoverflow.com/questions/1601757/recursion-python-return-value-question/1601814#16018140Answer by Brian for Recursion - Python, return value questionBrian2009-10-21T15:57:56Z2009-10-21T15:57:56Z<p>Nothing's being implicitely returned - when n=0, the function is entering the if statement, and returning 1 directly from the <code>return 1</code> statement.
However, this isn't the point at which the "answer which is the factorial" is returned to the user. Instead, it may be returning this value to the
<em>calling</em> function invoked by fac(1), which in the middle of the <code>n * fac(n - 1)</code> branch. Thus it will take the "1" returned and return <code>n*1</code>, which is 1 to <strong>it's</strong> caller. If that's fac(2), it'll return <code>n * 1</code>, or 2 to <strong>it's</strong> caller and so on.</p>
<p>Thus fac(5) gets translated like:</p>
<pre><code>fac(5) = 5 * fac(4) = 5 * (4 * fac(3) = 5 * (4* (3 * fac(2)) = 5 * (4* (3 * (2 * fac(1)) = 5 * (4* (3 * (2 * (1 * fac(0)) = 5*4*3*2*1*1
</code></pre>
<p>Only after the 1 value gets returned through each upper layer does it get back to the first caller, and the multiplication at each stage gives you the answer.</p>
http://stackoverflow.com/questions/1600591/using-a-python-dictionary-as-a-key-non-nested/1600851#16008513Answer by Brian for Using a Python Dictionary as a Key (Non-nested)Brian2009-10-21T13:28:25Z2009-10-21T13:28:25Z<p>One way to do this would be to subclass the dict and provide a hash method. ie:</p>
<pre><code>class HashableDict(dict):
def __hash__(self):
return hash(tuple(sorted(self.iteritems())))
>>> d = HashableDict(a=1, b=2)
>>> d2 = { d : "foo"}
>>> d2[HashableDict(a=1, b=2)]
"foo"
</code></pre>
<p>However, bear in mind the reasons why dicts (or any mutable types) don't do this: mutating the object after it has been added to a hashtable will change the hash, which means the dict will now have it in the wrong bucket, and so incorrect results will be returned.</p>
<p>If you go this route, either be <strong>very</strong> sure that dicts will never change after they have been put in the other dictionary, or actively prevent them (eg. check that the hash never changes after the first call to <code>__hash__</code>, and throw an exception if not.)</p>
http://stackoverflow.com/questions/1443433/help-with-python-regular-expression/1443517#14435173Answer by Brian for help with python regular expressionBrian2009-09-18T09:41:11Z2009-09-18T09:51:30Z<p>Your problem is that the regex is continuing to find the BTO in the next group. As a quick workaround, you could just prohibit the "#" character in the interface id (assuming this isn't valid within records, and only seperates them).</p>
<pre><code>re1 = '''^interface ([^#]*?$)[^#]*?BTO.*?^#$'''
</code></pre>
http://stackoverflow.com/questions/1432480/any-way-to-clear-python-shell/1433818#14338181Answer by Brian for Any way to clear python shell?Brian2009-09-16T15:44:21Z2009-09-16T15:44:21Z<p>The "cls" and "clear" are commands which will clear a terminal (ie a DOS prompt, or terminal window). From your screenshot, you are using the shell within IDLE, which won't be affected by such things. Unfortunately, I don't think there is a way to clear the screen in IDLE. The best you could do is to scroll the screen down lots of lines, eg:</p>
<pre><code>print "\n" * 100
</code></pre>
<p>Though you could put this in a function:</p>
<pre><code>def cls(): print "\n" * 100
</code></pre>
<p>And then call it when needed as <code>cls()</code></p>
http://stackoverflow.com/questions/1432126/how-to-get-content-of-a-small-ascii-file-in-python/1432238#14322389Answer by Brian for how to get content of a small ascii file in python ?Brian2009-09-16T10:48:20Z2009-09-16T10:48:20Z<p>In the current implementation of CPython, both will generally immediately close the file. However, Python the language makes no such guarantee for the second one - the file will eventually be closed, but the finaliser may not be called until the next gc cycle. Implementations like Jython and IronPython will work like this, so it's good practice to explicitely close your files. </p>
<p>I'd say using the first solution is the best practice, though <code>open</code> is generally preferred to <code>file</code>. Note that you can shorten it a little though if you prefer the brevity of the second example:</p>
<pre><code>def file_get_contents(filename):
with open(filename) as f:
return f.read()
</code></pre>
<p>The <code>__exit__</code> part of the context manager will execute when you leave the body for <em>any</em> reason, including exceptions and returning from the function - there's no need to use an intermediate variable.</p>
http://stackoverflow.com/questions/1390657/removing-redundant-symbols-from-string/1391175#13911756Answer by Brian for Removing redundant symbols from stringBrian2009-09-07T22:26:04Z2009-09-07T22:26:04Z<p>Note that the seperator symbols used vary from country to country. In some cultures, "." is used to seperate groups, and "," indicates a decimal point for instance. If you're parsing user-entered strings like this, it may be better to use the locale module instead. For example:</p>
<pre><code>>>> import locale
>>> locale.atof('12,423,343.93') # No locale set yet, so this will refuse to parse
ValueError: invalid literal for float(): 12,423,343.93
>>> locale.setlocale(locale.LC_NUMERIC, "en_GB") # Use a UK locale.
>>> locale.atof('12,423,343.93')
12423343.93
</code></pre>
http://stackoverflow.com/questions/1327204/append-a-tuple-to-a-list/1327227#13272276Answer by Brian for Append a tuple to a listBrian2009-08-25T09:55:59Z2009-08-25T09:55:59Z<p>You can convert the tuple to a list, which will allow you to concatenate it to the other list. ie:</p>
<pre><code>def fn(*args):
fn2(['foo', 'bar'] + list(args))
</code></pre>
http://stackoverflow.com/questions/1315559/how-good-is-startswith/1316245#13162456Answer by Brian for How good is startswith?Brian2009-08-22T15:44:09Z2009-08-22T15:44:09Z<p>I'd agree with the others that startswith is more readable, and you should use that. That said, if performance is a big issue for such a special case, benchmark it:</p>
<pre><code>$ python -m timeit -s 'text="foo"' 'text.startswith("a")'
1000000 loops, best of 3: 0.537 usec per loop
$ python -m timeit -s 'text="foo"' 'text[0]=="a"'
1000000 loops, best of 3: 0.22 usec per loop
</code></pre>
<p>So <code>text[0]</code> is amost 2.5 times as fast - but it's a pretty quick operation; you'd save ~0.3 microseconds per compare depending on the system. Unless you're doing millions of comparisons in a time critical situation though, I'd still go with the more readable startswith.</p>
http://stackoverflow.com/questions/1305532/convert-python-dict-to-object/1306221#13062211Answer by Brian for Convert Python dict to objectBrian2009-08-20T13:33:26Z2009-08-20T15:29:13Z<p>Here's another implementation:</p>
<pre><code>class DictObj(object):
def __init__(self, d):
self.__dict__ = d
def dict_to_obj(d):
if isinstance(d, (list, tuple)): return map(dict_to_obj, d)
elif not isinstance(d, dict): return d
return DictObj(dict((k, dict_to_obj(v)) for (k,v) in d.iteritems()))
</code></pre>
<p>[Edit] Missed bit about also handling dicts within lists, not just other dicts. Added fix.</p>
http://stackoverflow.com/questions/200738/how-can-i-unpack-binary-hex-formatted-data-in-python/200861#2008616Answer by Brian for How can I unpack binary hex formatted data in Python?Brian2008-10-14T11:59:32Z2009-08-19T17:56:17Z<p>There's no corresponding "hex nibble" code for struct.pack, so you'll either need to manually pack into bytes first, like:</p>
<pre><code>hex_string = 'abcdef12'
hexdigits = [int(x, 16) for x in hex_string]
data = ''.join(struct.pack('B', (high <<4) + low)
for high, low in zip(hexdigits[::2], hexdigits[1::2]))
</code></pre>
<p>Or better, you can just use the hex codec. ie.</p>
<pre><code>>>> data = hex_string.decode('hex')
>>> data
'\xab\xcd\xef\x12'
</code></pre>
<p>To unpack, you can encode the result back to hex similarly</p>
<pre><code>>>> data.encode('hex')
'abcdef12'
</code></pre>
<p>However, note that for your example, there's probably no need to take the round-trip through a hex representation at all when encoding. Just use the md5 binary digest directly. ie.</p>
<pre><code>>>> x = md5.md5('some string')
>>> x.digest()
'Z\xc7I\xfb\xee\xc96\x07\xfc(\xd6f\xbe\x85\xe7:'
</code></pre>
<p>This is equivalent to your pack()ed representation. To get the hex representation, use the same unpack method above:</p>
<pre><code>>>> x.digest().decode('hex')
'acbd18db4cc2f85cedef654fccc4a4d8'
>>> x.hexdigest()
'acbd18db4cc2f85cedef654fccc4a4d8'
</code></pre>
<p>[Edit]: Updated to use better method (hex codec)</p>
http://stackoverflow.com/questions/986233/windows-forms-datagridview-control-have-different-control-types-in-the-same-colum/1273218#12732180Answer by Brian for Windows Forms DataGridView control have different control types in the same columnBrian2009-08-13T16:50:57Z2009-08-13T16:50:57Z<p>I've recently had a similar usecase, and ended up writing something like the below code:</p>
<p>Write a custom Cell and Column class, and override the EditType and InitializeEditingControl methods on the cell, to return different controls as appropriate (here I'm just databinding to a list of a custom class with .useCombo field indicating what control to use):</p>
<pre><code>// Define a column that will create an appropriate type of edit control as needed.
public class OptionalDropdownColumn : DataGridViewColumn
{
public OptionalDropdownColumn()
: base(new PropertyCell())
{
}
public override DataGridViewCell CellTemplate
{
get
{
return base.CellTemplate;
}
set
{
// Ensure that the cell used for the template is a PropertyCell.
if (value != null &&
!value.GetType().IsAssignableFrom(typeof(PropertyCell)))
{
throw new InvalidCastException("Must be a PropertyCell");
}
base.CellTemplate = value;
}
}
}
// And the corresponding Cell type
public class OptionalDropdownCell : DataGridViewTextBoxCell
{
public OptionalDropdownCell()
: base()
{
}
public override void InitializeEditingControl(int rowIndex, object
initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle)
{
// Set the value of the editing control to the current cell value.
base.InitializeEditingControl(rowIndex, initialFormattedValue,
dataGridViewCellStyle);
DataItem dataItem = (DataItem) this.OwningRow.DataBoundItem;
if (dataItem.useCombo)
{
DataGridViewComboBoxEditingControl ctl = (DataGridViewComboBoxEditingControl)DataGridView.EditingControl;
ctl.DataSource = dataItem.allowedItems;
ctl.DropDownStyle = ComboBoxStyle.DropDownList;
}
else
{
DataGridViewTextBoxEditingControl ctl = (DataGridViewTextBoxEditingControl)DataGridView.EditingControl;
ctl.Text = this.Value.ToString();
}
}
public override Type EditType
{
get
{
DataItem dataItem = (DataItem)this.OwningRow.DataBoundItem;
if (dataItem.useCombo)
{
return typeof(DataGridViewComboBoxEditingControl);
}
else
{
return typeof(DataGridViewTextBoxEditingControl);
}
}
}
}
</code></pre>
<p>Then just add a column to your DataGridView of this type, and the correct edit control should be used.</p>
http://stackoverflow.com/questions/1253528/is-there-an-easy-way-to-pickle-a-python-function-or-otherwise-serialize-its-code/1253813#12538139Answer by Brian for Is there an easy way to pickle a python function (or otherwise serialize its code)?Brian2009-08-10T08:58:22Z2009-08-10T11:25:53Z<p>You could serialise the function bytecode and then reconstruct it on the caller. The <a href="http://www.python.org/doc/2.1.1/lib/module-marshal.html" rel="nofollow">marshal</a> module can be used to serialise code objects, which can then be reassembled into a function. ie:</p>
<pre><code>import marshal
def foo(x): return x*x
code_string = marshal.dumps(foo.func_code)
</code></pre>
<p>Then in the remote process (after transferring code_string):</p>
<pre><code>import marshal, types
code = marshal.loads(code_string)
func = types.FunctionType(code, globals(), "some_func_name")
func(10) # gives 100
</code></pre>
<p>A few caveats:</p>
<ul>
<li><p>marshal's format (any python bytecode for that matter) may not be compatable between major python versions.</p></li>
<li><p>Will only work for cpython implementation.</p></li>
<li><p>If the function references globals (including imported modules, other functions etc) that you need to pick up, you'll need to serialise these too, or recreate them on the remote side. My example just gives it the remote process's global namespace.</p></li>
<li><p>You'll probably need to do a bit more to support more complex cases, like closures or generator functions.</p></li>
</ul>
http://stackoverflow.com/questions/1238975/can-all-language-constructs-be-first-class-in-languages-with-offside-rules/1239015#12390154Answer by Brian for Can all language constructs be first-class in languages with offside-rules?Brian2009-08-06T13:52:42Z2009-08-06T19:00:02Z<p>I don't see the relation with first-classness here - you're not passing the <code>if</code> <strong>statement</strong> to the function, but the object it returns, which is as fully first class in python as in lisp. However as far as having a statement/expression dichotomy, clearly it is possible: Haskell for instance has indentation-based syntax, yet as a purely functional language obviously has no statements.</p>
<p>I think Python's separation here has more to do with forbidding dangerous constructs like "if x=4:" etc than any syntax limitation. (Though I think it loses more than it gains by this - sometimes having the flexibility sufficient to shoot off your foot is very valuable, even if you do risk losing a few toes now and again.)</p>
http://stackoverflow.com/questions/1207457/convert-unicode-to-string-in-python-containing-extra-symbols/1207836#12078362Answer by Brian for Convert Unicode to String in Python (containing extra symbols)Brian2009-07-30T16:44:54Z2009-07-30T16:44:54Z<p>If you have a unicode string, and you want to write this to a file, or other serialised form, you must first <em>encode</em> it into a particular representation that can be stored. There are several common unicode encodings, such as utf-16 (uses 2 bytes for most unicode characters) or utf-8 (1-4 bytes / codepoint depending on the character) etc. To convert that string into a particular encoding, you can use:</p>
<pre><code>>>> s= u'£10"
>>> s.encode('utf8')
'\xc2\x9c10'
>>> s.encode('utf16')
'\xff\xfe\x9c\x001\x000\x00'
</code></pre>
<p>This raw string of bytes can be written to a file. However note that when reading it back, you must know what encoding it is in and decode it using that same encoding.</p>
<p>When writing to files, you can get rid of this manual encode / decode process by using the <a href="http://docs.python.org/library/codecs.html" rel="nofollow">codecs</a> module. So, to open a file that encodes all unicode strings into utf8, use:</p>
<pre><code>import codecs
f = codecs.open('path/to/file.txt','w','utf8')
f.write(my_unicode_string) # Stored on disk as UTF8
</code></pre>
<p>Do note that anything else that is using these files must understand what encoding the file is in if they want to read them. If you are the only one doing the reading/writing this is no problem, otherwise make sure that you write in a form understandable by whatever else uses the files.</p>
<p>In python 3, this form of file access is the default, and the builtin <code>open</code> function will take an encoding parameter and always translate to/from unicode strings (the default string object in python3) for files opened in text mode.</p>
http://stackoverflow.com/questions/1186501/python-update-a-list-of-tuples-fastest-method/1188064#11880641Answer by Brian for Python: update a list of tuples... fastest methodBrian2009-07-27T13:04:32Z2009-07-27T14:43:34Z<p>You'd probably be best served by some form of tree here (preserving sorted order while allowing O(log n) replacements.) There is no builtin balanaced tree type, but you can find many third party examples. Alternatively, you could either:</p>
<ol>
<li><p>Use a binary search to find the node. The bisect module will do this, but it compares based on the normal python comparison order, whereas you seem to be sorted based on the second element of each tuple. You could reverse this, or just write your own binary search (or simply take the code from bisect_left and modify it)</p></li>
<li><p>Use both a dict <strong>and</strong> a list. The list contains the sorted <strong>keys</strong> only. You can wrap the dict class easily enough to ensure this is kept in sync. This allows you fast dict updating while maintaining sort order of the keys. This should prevent your problem of losing sort performance due to constant conversion between dict/list. </p></li>
</ol>
<p>Here's a quick implementation of such a thing:</p>
<pre><code>import bisect
class SortedDict(dict):
"""Dictionary which is iterable in sorted order.
O(n) sorted iteration
O(1) lookup
O(log n) replacement ( but O(n) insertion or new items)
"""
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
self._keys = sorted(dict.iterkeys(self))
def __setitem__(self, key, val):
if key not in self:
# New key - need to add to list of keys.
pos = bisect.bisect_left(self._keys, key)
self._keys.insert(pos, key)
dict.__setitem__(self, key, val)
def __delitem__(self, key):
if key in self:
pos = bisect.bisect_left(self._keys, key)
del self._keys[pos]
dict.__delitem__(self, key)
def __iter__(self):
for k in self._keys: yield k
iterkeys = __iter__
def iteritems(self):
for k in self._keys: yield (k, self[k])
def itervalues(self):
for k in self._keys: yield self[k]
def update(self, other):
dict.update(self, other)
self._keys = sorted(dict.iterkeys(self)) # Rebuild (faster if lots of changes made - may be slower if only minor changes to large dict)
def keys(self): return list(self.iterkeys())
def values(self): return list(self.itervalues())
def items(self): return list(self.iteritems())
def __repr__(self):
return "%s(%s)" % (self.__class__.__name__, ', '.join("%s=%r" % (k, self[k]) for k in self))
</code></pre>
http://stackoverflow.com/questions/1142068/how-to-modify-the-local-namespace-in-python/1144561#11445611Answer by Brian for How to modify the local namespace in pythonBrian2009-07-17T17:07:52Z2009-07-17T17:07:52Z<p>You've a couple of options. First, note that g in your example isn't actually a local to the function (ie. not assigned within it), it's a global (ie hasn't been assigned to a local variable). This means that it will be looked up in the module the function is defined in. This is fortunate, as there's no way of altering locals externally (short of patching the bytecode), as they get assigned when the function runs, not before.</p>
<p>One option is simply to inject your function into the function's module's namespace. This will work, but will affect every function in that module that accesses the variable, rather than just the one function.</p>
<p>To affect just the one function, you need to instead point that func_globals somewhere else. Unfortunately, this is a read-only property, but you can do what you want by recreating the function with the same body, but a different global namespace:</p>
<pre><code>import new
f = new.function(f.func_code, {'g': my_g_function}, f.func_name, f.func_defaults, f.func_closure)
</code></pre>
<p>f will now be indentical, except that it will look for globals in the provided dict. Note that this rebinds the whole global namespace - if there are variables there that f <em>does</em> look up, make sure you provide them too. This is also fairly hacky though, and may not work on versions of python other than cpython.</p>
http://stackoverflow.com/questions/1143379/removing-duplicates-from-list-of-lists-in-python/1143432#114343211Answer by Brian for Removing duplicates from list of lists in PythonBrian2009-07-17T13:54:27Z2009-07-17T13:54:27Z<p>Do you care about preserving order / which duplicate is removed? If not, then:</p>
<pre><code>dict((x[0], x) for x in L).values()
</code></pre>
<p>will do it. If you want to preserve order, and want to keep the first one you find then:</p>
<pre><code>def unique_items(L):
found = set()
for item in L:
if item[0] not in found:
yield item
found.add(item[0])
print list(unique_items(L))
</code></pre>
http://stackoverflow.com/questions/1139835/python-fails-to-execute-firefox-webbrowser-from-a-root-executed-script-with-privi/1140199#11401991Answer by Brian for Python fails to execute firefox webbrowser from a root executed script with privileges dropBrian2009-07-16T20:47:04Z2009-07-16T20:47:04Z<p>This could be your environment. Changing the permissions will still leave environment variables like $HOME pointing at the root user's directory, which will be inaccessible. It may be worth trying altering these variables by changing <code>os.environ</code> before launching the browser. There may also be other variables worth checking.</p>
http://stackoverflow.com/questions/1132941/least-astonishment-in-python-the-mutable-default-argument/1136611#11366114Answer by Brian for least astonishment in python: the mutable default argumentBrian2009-07-16T10:05:09Z2009-07-16T19:13:35Z<p>I used to think that creating the objects at runtime would be the better approach. I'm less certain now, since you do lose some useful features, though it may be worth it regardless simply to prevent newbie confusion. The disadvantages of doing so are:</p>
<p><strong>1. Performance</strong></p>
<pre><code>def foo(arg=something_expensive_to_compute())):
...
</code></pre>
<p>If call-time evaluation is used, then the expensive function is called every time your function is used without an argument. You'd either pay an expensive price on each call, or need to manually cache the value externally, polluting your namespace and adding verbosity.</p>
<p><strong>2. Forcing bound parameters</strong></p>
<p>A useful trick is to bind parameters of a lambda to the <em>current</em> binding of a variable when the lambda is created. For example:</p>
<pre><code>funcs = [ lambda i=i: i for i in range(10)]
</code></pre>
<p>This returns a list of functions that return 0,1,2,3... respectively. If the behaviour is changed, they will instead bind <code>i</code> to the <em>call-time</em> value of i, so you would get a list of functions that all returned <code>9</code>.</p>
<p>The only way to implement this otherwise would be to create a further closure with the i bound, ie:</p>
<pre><code>def make_func(i): return lambda: i
funcs = [make_func(i) for i in range(10)]
</code></pre>
<p><strong>3. Introspection</strong></p>
<p>Consider the code:</p>
<pre><code>def foo(a='test', b=100, c=[]):
print a,b,c
</code></pre>
<p>We can get information about the arguments and defaults using the <code>inspect</code> module, which </p>
<pre><code>>>> inspect.getargspec(foo)
(['a', 'b', 'c'], None, None, ('test', 100, []))
</code></pre>
<p>This information is very useful for things like document generation, metaprogramming, decorators etc.</p>
<p>Now, suppose the behaviour of defaults could be changed so that this is the equivalent of:</p>
<pre><code>_undefined = object() # sentinel value
def foo(a=_undefined, b=_undefined, c=_undefined)
if a is _undefined: a='test'
if b is _undefined: b=100
if c is _undefined: c=[]
</code></pre>
<p>However, we've lost the ability to introspect, and see what the default arguments <em>are</em>. Because the objects haven't been constructed, we can't ever get hold of them without actually calling the function. The best we could do is to store off the source code and return that as a string.</p>
http://stackoverflow.com/questions/1136826/what-does-python-intern-do-and-when-should-it-be-used/1137293#11372931Answer by Brian for What does python *intern* do, and when should it be used?Brian2009-07-16T12:39:19Z2009-07-16T19:12:08Z<p>Essentially intern looks up (or stores if not present) the string in a collection of interned strings, so all interned instances will share the same identity. You trade the one-time cost of looking up this string for faster comparisons (the compare can return True after just checking for identity, rather than having to compare each character), and reduced memory usage.</p>
<p>However, python will automatically intern strings that are small, or look like identifiers, so you may find you get no improvement because your strings are already being interned behind the scenes. For example:</p>
<pre><code>>>> a = 'abc'; b = 'abc'
>>> a is b
True
</code></pre>
<p>In the past, one disadvantage was that interned strings were permanent. Once interned, the string memory was never freed even after all references were dropped. I think this is no longer the case for more recent vesions of python though.</p>
http://stackoverflow.com/questions/1112665/safety-of-python-eval-for-list-deserialization/1113480#11134802Answer by Brian for Safety of Python 'eval' For List DeserializationBrian2009-07-11T10:57:19Z2009-07-11T10:57:19Z<p>With everything as you describe, it is technically safe to eval repred strings, however, I'd avoid doing it anyway as it's asking for trouble:</p>
<ul>
<li><p>There could be some weird corner-case where your assumption that only repred strings are stored (eg. a bug / different pathway into the storage that doesn't repr instantly becmes a code injection exploit where it might otherwise be unexploitable)</p></li>
<li><p>Even if everything is OK now, assumptions might change at some point, and unsanitised data may get stored in that field by someone unaware of the eval code.</p></li>
<li><p>Your code may get reused (or worse, copy+pasted) into a situation you didn't consider.</p></li>
</ul>
<p>As <a href="http://stackoverflow.com/questions/1112665/safety-of-python-eval/1112684#1112684">Alex Martelli</a> pointed out, in python2.6 and higher, there is ast.literal_eval which will safely handle both strings and other simple datatypes like tuples. This is probably the safest and most complete solution.</p>
<p>Another possibility however is to use the <code>string-escape</code> codec. This is much faster than eval (about 10 times according to timeit), available in earlier versions than literal_eval, and should do what you want:</p>
<pre><code>>>> s = 'he\nllo\' wo"rld\0\x03\r\n\tabc'
>>> repr(s)[1:-1].decode('string-escape') == s
True
</code></pre>
<p>(The [1:-1] is to strip the outer quotes repr adds.)</p>
http://stackoverflow.com/questions/1075106/how-do-i-find-the-memory-address-of-a-python-django-model-object/1075131#10751317Answer by Brian for How do I find the memory address of a Python / Django model object?Brian2009-07-02T15:40:20Z2009-07-02T15:40:20Z<p><code>id()</code> will return the identity of the object (generally implemented as the address), which is guaranteed unique for two objects which exist at the same point in time. However the obvious way to check whether two objects are identical is to use the operator explicitely designed for this: <code>is</code></p>
<p>ie.</p>
<pre><code> if obj1 is obj2:
# Objects are identical.
</code></pre>
http://stackoverflow.com/questions/1063626/how-to-use-french-letters-in-a-django-template/1063665#10636652Answer by Brian for how to use french letters in a django template?Brian2009-06-30T13:23:52Z2009-06-30T13:23:52Z<p>You are probably storing the template in a non-unicode encoding, such as latin-1. I believe Django assumes that templates are in UTF-8 by default (though there is a setting to override this).</p>
<p>Your editor should be capable of saving the template file in the UTF-8 encoding (probably via a dropdown on the save as page, though this may depend on your editor). Re-save the file as UTF-8, and the error should go away.</p>
http://stackoverflow.com/questions/1063319/reversible-dictionary-for-python/1063393#10633936Answer by Brian for Reversible dictionary for pythonBrian2009-06-30T12:30:19Z2009-06-30T12:30:19Z<p>If your keys and values are non-overlapping, one obvious approach is to simply store them in the same dict. ie:</p>
<pre><code>class BidirectionalDict(dict):
def __setitem__(self, key, val):
dict.__setitem__(self, key, val)
dict.__setitem__(self, val, key)
def __delitem__(self, key):
dict.__delitem__(self, self[key])
dict.__delitem__(self, key)
d = BidirectionalDict()
d['foo'] = 4
print d[4] # Prints 'foo'
</code></pre>
<p>(You'll also probably want to implement things like the <code>__init__</code>, <code>update</code> and <code>iter*</code> methods to act like a real dict, depending on how much functionality you need).</p>
<p>This should only involve one lookup, though may not save you much in memory (you still have twice the number of dict entries after all). Note however that neither this nor your original will use up twice as much space: the dict only takes up space for the references (effectively pointers), plus an overallocation overhead. The space taken up by your data itself will not be repeated twice since the same objects are pointed to.</p>
http://stackoverflow.com/questions/1057934/importing-methods-for-a-python-class/1058221#10582210Answer by Brian for Importing methods for a Python classBrian2009-06-29T13:15:57Z2009-06-29T13:15:57Z<p>Technically, yes this is possible, but solving it this way is not really idiomatic python, and there are likely better solutions. Here's an example of how to do so:</p>
<pre><code>import to_import_from
class Instrument(object):
locals().update(dict((k,v) for (k,v) in
to_import_from.__dict__.iteritems() if callable(v)))
def __init__(self):
self.flag = True
def direct_method(self,arg1):
self.external_method(arg1, arg2)
</code></pre>
<p>That will import all callable functions defined in <code>to_import_from</code> as methods of the <code>Instrument</code> class, as well as adding some more methods. Note: if you also want to copy global variables as instance variables, you'll need to refine the check. Also note that it adds <em>all</em> callable objects it finds in to_import_from's namespace, including imports from other modules (ie <code>from module import some_func</code> style imports)</p>
<p>However, this isn't a terribly nice way to do it. Better would be to instead tweak your code generation to <em>produce</em> a class, and have your class inherit from it. This avoids the unneccessary copying of methods into Instrument's namespace, and instead uses normal inheritcance. ie:</p>
<pre><code>class Instrument(to_import_from.BaseClass):
# Add new methods here.
</code></pre>
http://stackoverflow.com/questions/1031466/evaluate-dice-rolling-notation-strings/1037771#10377712Answer by Brian for Evaluate dice rolling notation stringsBrian2009-06-24T11:27:03Z2009-06-24T23:15:44Z<p><strong>Python</strong> 124 chars with eval, 154 without.</p>
<p>Just to show python doesn't <em>have</em> to be readable, here's a 124 character solution, with a similar eval-based approach to the original:</p>
<pre><code>import random,re
f=lambda s:eval(re.sub(r'(\d*)d(\d+)',lambda m:int(m.group(1)or 1)*('+random.randint(1,%s)'%m.group(2)),s))
</code></pre>
<p>[Edit] And here's a 154 character one without eval:</p>
<pre><code>import random,re
f=lambda s:sum(int(c or 0)+sum(random.randint(1,int(b))for i in[0]*int(a or 1))for a,b,c in re.findall(r'(\d*)d(\d+)(\s*[+-]\s*\d+)?',s))
</code></pre>
<p>Note: both will work for inputs like "2d6 + 1d3 + 5" but don't support more advanced variants like "2d3d6" or negative dice ("1d6-4" is OK, but "1d6-2d4" isn't) (You can shave off 2 characters to not support negative numbers at all in the second one instead)</p>
http://stackoverflow.com/questions/1305532/convert-python-dict-to-object/1306221#1306221Comment by Brian on Convert Python dict to objectBrian2009-11-25T16:23:54Z2009-11-25T16:23:54Z@Mark: Actually, a new dictionary is being passed to DictObj every time, rather than just passing through the same dict object, so this won't actually occur. It's neccessary to do this, as I need to translate the <i>values</i> within a dictionary as well, so it would be impossible to pass through the original dict object without mutating it myself.http://stackoverflow.com/questions/1600591/using-a-python-dictionary-as-a-key-non-nested/1600859#1600859Comment by Brian on Using a Python Dictionary as a Key (Non-nested)Brian2009-10-21T13:59:51Z2009-10-21T13:59:51ZMake that <code>tuple(sorted(somedictionary.items())</code> - the order of keys is not guaranteed, which means equal dicts might produce different reprs by listing the items in a different order.http://stackoverflow.com/questions/1600591/using-a-python-dictionary-as-a-key-non-nested/1600717#1600717Comment by Brian on Using a Python Dictionary as a Key (Non-nested)Brian2009-10-21T13:37:04Z2009-10-21T13:37:04Z<code>repr</code> and <code>str</code> are actually the same for dicts anyway. However, you could run into trouble this way - it's possible to get dicts with different internal state so that, while they contain the same items, they list their keys in a different order, and would thus produce a different key. You'll also run into trouble if you store objects without the property that <code>repr(x)==repr(y)</code> <=> x==y in the dict (eg. most user created classes).http://stackoverflow.com/questions/1600591/using-a-python-dictionary-as-a-key-non-nested/1600818#1600818Comment by Brian on Using a Python Dictionary as a Key (Non-nested)Brian2009-10-21T13:32:08Z2009-10-21T13:32:08ZDict objects are unhashable, so this will fail (if they weren't, the original code would have worked). Even if it didn't (or you hashed the sorted tuple of <code>dict.items()</code> instead), it would be a bad idea - hash() isn't designed to be secure against collisions, so you'll likely get two different dicts with the same hash, thus losing information.
http://stackoverflow.com/questions/1593576/string-replacing-in-a-file-by-given-position/1593658#1593658Comment by Brian on String replacing in a file by given positionBrian2009-10-20T12:34:51Z2009-10-20T12:34:51Z@gnibbler: Actually, you can write anywhere in the file with "ab+" - the "+" means its open for updating, it just happens to start at the tail. mmap does need the OS level file handle however, rather than the python file wrapper object, however you should be able to do this just by passing the result of calling <code>fileno()</code> on the file object.
ie <code>f=open('file','a+'); m=mmap.mmap(f.fileno(), 0); ...</code>http://stackoverflow.com/questions/1432126/how-to-get-content-of-a-small-ascii-file-in-python/1432238#1432238Comment by Brian on how to get content of a small ascii file in python ?Brian2009-09-16T15:18:06Z2009-09-16T15:18:06Z@kriss: Note that that doesn't contradict the statement about running <code>__exit__</code> when leaving the body - it just details what happens if you <b>don't</b> exit the body by having a generator suspended within the context manager, and how python will force it to leave by raising an exception.http://stackoverflow.com/questions/1390657/removing-redundant-symbols-from-string/1391175#1391175Comment by Brian on Removing redundant symbols from stringBrian2009-09-08T11:15:19Z2009-09-08T11:15:19ZHmm. You may have a point. Just tried out the same on a windows system and indeed locales do seem to be pretty awkward to use. You need to have the exact locale (including charset, even though it's not needed for the numeric processing) installed to be able to set it.http://stackoverflow.com/questions/1341208/python-dictionaries-of-lists-are-somehow-coupled/1341240#1341240Comment by Brian on python: dictionaries of lists are somehow coupledBrian2009-08-27T15:01:04Z2009-08-27T15:01:04ZAn alternative to .copy or [:] is to just create a new list, passing the old list to the constructor. ie <code>newlist = list(other_list)</code> or <code>new_dict = dict(other_dict)</code>http://stackoverflow.com/questions/1327204/append-a-tuple-to-a-list/1327244#1327244Comment by Brian on Append a tuple to a listBrian2009-08-25T10:05:55Z2009-08-25T10:05:55ZThat won't work. list.extend mutates the list, and returns None to indicate this, rather than returning the list.http://stackoverflow.com/questions/200738/how-can-i-unpack-binary-hex-formatted-data-in-python/200861#200861Comment by Brian on How can I unpack binary hex formatted data in Python?Brian2009-08-19T17:57:21Z2009-08-19T17:57:21Z@Leandro: Oops - group() was a function in my own library (break a sequence into groups of N characters). I've updated the code to just use a slice to avoid the undefined function.http://stackoverflow.com/questions/1253528/is-there-an-easy-way-to-pickle-a-python-function-or-otherwise-serialize-its-code/1253813#1253813Comment by Brian on Is there an easy way to pickle a python function (or otherwise serialize its code)?Brian2009-08-10T11:26:49Z2009-08-10T11:26:49Z@EOL: Good point - I've updated the code to use the types module instead.http://stackoverflow.com/questions/1212649/how-to-get-information-about-a-function-and-call-it/1212911#1212911Comment by Brian on How to get information about a function and call itBrian2009-07-31T15:50:07Z2009-07-31T15:50:07ZUsing getattr(obj, method_name) is much cleaner than using eval.http://stackoverflow.com/questions/1198512/split-a-list-into-parts-based-on-a-set-of-indexes-in-python/1198876#1198876Comment by Brian on Split a list into parts based on a set of indexes in PythonBrian2009-07-29T09:21:43Z2009-07-29T09:21:43ZThat -1 will cut off the last item. You can use <code>None</code> instead to be treated the same as an empty slice part (also for the start, though there it doesn't matter)http://stackoverflow.com/questions/1186501/python-update-a-list-of-tuples-fastest-method/1186518#1186518Comment by Brian on Python: update a list of tuples... fastest methodBrian2009-07-27T12:28:16Z2009-07-27T12:28:16ZNote thought that the list seems to be sorted on the <b>second</b> item. bisect uses normal comparison, which will give the wrong result in this case.http://stackoverflow.com/questions/1158155/is-there-a-onlogn-algorithm-for-inverting-a-simply-linked-listComment by Brian on Is there a O(nlog(n)) algorithm for inverting a simply linked list?Brian2009-07-21T10:03:56Z2009-07-21T10:03:56ZAs a quick pedantic nitpick: your <code>O(n)</code> algorithm <b>is</b> an <code>O(n logN)</code> algorithm, so one answer to your question is the unmodified O(n) algorithm. <code>O(n log n)</code> is the set of algorithms growing no faster than n log n and includes those that are <code>O(n)</code> and even <code>O(1)</code>. To limit to ones in the same asymptotic bounds in both directions, you'd need to say <code>ϴ(n)</code>. (In practice, most people really mean <code>ϴ(n)</code> when they say <code>O(n)</code>)