Brian

10,296
reputation
608 views

Registered User

name Brian
member for 1 year
seen 5 hours ago
website
location UK
age 31
Just another developer. I work mostly with python, C++, SQL, and C#.
Dec
6
awarded  Mortarboard
Dec
5
accepted redirecting sys.stdout to python logging
Dec
4
awarded  Good Answer
Nov
25
answered Parsing a hex formated DEC 32 bit single precision floating point value in python
Nov
25
comment Convert Python dict to object
@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 values within a dictionary as well, so it would be impossible to pass through the original dict object without mutating it myself.
Oct
29
awarded  Good Answer
Oct
27
awarded  Nice Answer
Oct
27
awarded  Nice Answer
Oct
22
accepted Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)
Oct
21
answered Recursion - Python, return value question
Oct
21
answered Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)
Oct
21
comment Using a Python Dictionary as a Key (Non-nested)
Make that tuple(sorted(somedictionary.items()) - the order of keys is not guaranteed, which means equal dicts might produce different reprs by listing the items in a different order.
Oct
21
comment Using a Python Dictionary as a Key (Non-nested)
repr and str 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 repr(x)==repr(y) <=> x==y in the dict (eg. most user created classes).
Oct
21
answered Using a Python Dictionary as a Key (Non-nested)
Oct
20
comment String replacing in a file by given position
@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 fileno() on the file object. ie f=open('file','a+'); m=mmap.mmap(f.fileno(), 0); ...
Sep
18
accepted help with python regular expression
Sep
18
revised help with python regular expression
Fix typo
Sep
18
answered help with python regular expression
Sep
16
answered Any way to clear python shell?
Sep
16
comment how to get content of a small ascii file in python ?
@kriss: Note that that doesn't contradict the statement about running __exit__ when leaving the body - it just details what happens if you don't exit the body by having a generator suspended within the context manager, and how python will force it to leave by raising an exception.
Sep
16
accepted how to get content of a small ascii file in python ?
Sep
16
answered how to get content of a small ascii file in python ?
Sep
16
awarded  Yearling
Sep
8
comment Removing redundant symbols from string
Hmm. 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.
Sep
7
answered Removing redundant symbols from string
Aug
27
comment python: dictionaries of lists are somehow coupled
An alternative to .copy or [:] is to just create a new list, passing the old list to the constructor. ie newlist = list(other_list) or new_dict = dict(other_dict)
Aug
25
accepted Append a tuple to a list
Aug
25
answered Append a tuple to a list
Aug
23
accepted How good is startswith?
Aug
22
answered How good is startswith?
Aug
20
revised Convert Python dict to object
Handle dicts within lists / tuples
Aug
20
answered Convert Python dict to object
Aug
19
comment How can I unpack binary hex formatted data in Python?
@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.
Aug
19
revised How can I unpack binary hex formatted data in Python?
Remove use of group
Aug
14
awarded  Nice Answer
Aug
13
answered Windows Forms DataGridView control have different control types in the same column
Aug
10
accepted Is there an easy way to pickle a python function (or otherwise serialize its code)?
Aug
10
comment Is there an easy way to pickle a python function (or otherwise serialize its code)?
@EOL: Good point - I've updated the code to use the types module instead.
Aug
10
revised Is there an easy way to pickle a python function (or otherwise serialize its code)?
Updated to use types.FunctionType, as new is deprecated, as pointed out by EOL
Aug
10
revised Is there an easy way to pickle a python function (or otherwise serialize its code)?
Fix typo in code (marshall vs marshal)
Aug
10
answered Is there an easy way to pickle a python function (or otherwise serialize its code)?
Aug
6
revised Can all language constructs be first-class in languages with offside-rules?
fix typo
Aug
6
accepted Can all language constructs be first-class in languages with offside-rules?
Aug
6
answered Can all language constructs be first-class in languages with offside-rules?
Jul
31
comment How to get information about a function and call it
Using getattr(obj, method_name) is much cleaner than using eval.
Jul
30
answered Convert Unicode to String in Python (containing extra symbols)
Jul
29
comment Split a list into parts based on a set of indexes in Python
That -1 will cut off the last item. You can use None instead to be treated the same as an empty slice part (also for the start, though there it doesn't matter)
Jul
27
revised Python: update a list of tuples… fastest method
Fix markup again (problems seem to occur if directly below numbered list)
Jul
27
revised Python: update a list of tuples… fastest method
Fix code markup
Jul
27
answered Python: update a list of tuples… fastest method