User cdleary - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T19:45:29Zhttp://stackoverflow.com/feeds/user/3594http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815907/whats-the-idiomatic-way-to-turn-a-single-char-into-a-string-in-java2What's the idiomatic way to turn a single char into a string in Java?cdleary2009-11-29T16:06:49Z2009-11-29T16:09:11Z
<p>Right now I'm using the following to minimize boxed object creation:</p>
<pre><code>String myString = "" + myChar;
</code></pre>
<p>Is this the idiomatic way to do it? (IMHO it feels a little awkward.)</p>
http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings9Vim Dvorak keybindings (rebindings :)cdleary2008-10-03T00:30:43Z2009-11-25T14:39:56Z
<p>Although I played with it before, I'm finally starting to use <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" rel="nofollow">Dvorak (Simplified)</a> regularly. I've been in a steady relationship with Vim for several years now, and I'm trying to figure out the best way to remap the key bindings to suit my newfound Dvorak skills.</p>
<p>How do <em>you</em> remap Vim's key bindings to best work with Dvorak?</p>
<p>Explanations encouraged!</p>
http://stackoverflow.com/questions/1795111/is-there-a-cross-platform-way-to-open-a-file-browser-in-python3Is there a cross-platform way to open a file browser in Python?cdleary2009-11-25T06:56:36Z2009-11-25T12:51:31Z
<p>I'm thinking something along the lines of the <a href="http://docs.python.org/library/webbrowser.html" rel="nofollow">webbrowser</a> module, but for file browsers. In Windows I'd like to open explorer, in GNOME on Linux I want to open nautilus, Konqueror on KDE, etc. I'd prefer not to kludge it up if I can avoid it. ;-)</p>
http://stackoverflow.com/questions/1583364/idiomatic-python-hasone2Idiomatic Python has_onecdleary2009-10-17T22:23:15Z2009-11-24T21:56:20Z
<p>I just invented a stupid little helper function:</p>
<pre><code>def has_one(seq, predicate=bool):
"""Return whether there is exactly one item in `seq` that matches
`predicate`, with a minimum of evaluation (short-circuit).
"""
iterator = (item for item in seq if predicate(item))
try:
iterator.next()
except StopIteration: # No items match predicate.
return False
try:
iterator.next()
except StopIteration: # Exactly one item matches predicate.
return True
return False # More than one item matches the predicate.
</code></pre>
<p>Because the most readable/idiomatic inline thing I could come up with was:</p>
<pre><code>[predicate(item) for item in seq].count(True) == 1
</code></pre>
<p>... which is fine in my case because I know seq is small, but it just feels weird. <strong>Is there an idiom I’m forgetting here that prevents me from having to break out this helper?</strong></p>
<h2>Clarification</h2>
<p>Looking back on it, this was kind of a crappily posed question, though we got some excellent answers! I was looking for either:</p>
<ul>
<li>An obvious and readable inline idiom or stdlib function, eager evaluation being acceptable in this case.</li>
<li>A more obvious and readable helper function -- since it's breaking out a whole other function, only the minimum amount of evaluation seems acceptable.</li>
</ul>
<p><a href="http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1583465#1583465">@Stephan202</a> came up with a really cool idiom for the helper function and <a href="http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1583445#1583445">@Martin v. Löwis</a> came up with a more simple inline idiom under the assumption that the predicate returns a bool. Thanks @ everybody for your help!</p>
http://stackoverflow.com/questions/641420/how-should-i-log-while-using-multiprocessing-in-python12How should I log while using multiprocessing in Python?cdleary2009-03-13T04:02:31Z2009-11-24T16:46:29Z
<p>Right now I have a central module in a framework that spawns multiple processes using the Python 2.6 <a href="http://docs.python.org/library/multiprocessing.html?#module-multiprocessing" rel="nofollow"><code>multiprocessing</code> module</a>. Because it uses <code>multiprocessing</code>, there is module-level multiprocessing-aware log, <code>LOG = multiprocessing.get_logger()</code>. Per <a href="http://docs.python.org/library/multiprocessing.html#logging" rel="nofollow">the docs</a>, this logger has process-shared locks so that you don't garble things up in <code>sys.stderr</code> (or whatever filehandle) by having multiple processes writing to it simultaneously.</p>
<p>The issue I have now is that the other modules in the framework are not multiprocessing-aware. The way I see it, I need to make all dependencies on this central module use multiprocessing-aware logging. That's annoying <em>within</em> the framework, let alone for all clients of the framework. Are there alternatives I'm not thinking of?</p>
http://stackoverflow.com/questions/186472/from-x-import-a-versus-import-x-x-a3from X import a versus import X; X.acdleary2008-10-09T09:04:34Z2009-11-19T14:33:55Z
<p>This is one of those semi-religious Python questions that I suspect has well reasoned responses lurking in the community. I've seen some Python programmers use the following style fairly consistently (we'll call it style 1):</p>
<pre><code>import some_module
# Use some_module.some_identifier in various places.
</code></pre>
<p>For support of this style you can cite the <a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">"explicit is better than implicit"</a> maxim. I've seen other programmers use this style (style 2):</p>
<pre><code>from some_module import some_identifier
# Use some_identifier in various places.
</code></pre>
<p>The primary benefit that I see in style 2 is maintainability -- especially with duck typing ideals I may want to swap some_module for some_other_module. I also feel style 2 wins points with the <a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">"readability counts"</a> maxim. Although I tend to disagree, one can always argue that search-and-replace is just as good an option when using the first style.</p>
<p><strong>Addendum:</strong> It was noted that you could use <code>as</code> to solve the switch from <code>some_module</code> to <code>some_other_module</code> in style 1. I forgot to mention that it is also common to decide to implement <code>some_identifier</code> in your <em>current</em> module, which makes creation of an equivalent <code>some_module</code> container slightly awkward.</p>
http://stackoverflow.com/questions/1686235/wxpython-how-should-i-organize-per-widget-data-in-the-controller3wxPython: How should I organize per-widget data in the controller?cdleary2009-11-06T08:37:10Z2009-11-15T18:14:29Z
<p>I have a widget that displays a filesystem hierarchy for convenient browsing (basically a tree control and some associated toolbar buttons, such as "refresh"). Each of these widgets has a set of base directories for it to display (recursively). Assume that the user may instantiate as many of these widgets as they find convenient. Note that these widgets don't correspond to any business data -- they're independent of the model.</p>
<p><strong>Where should the (per-widget) set of base directories live in good MVC design?</strong></p>
<p>When the refresh button is pushed, an event is trapped by the controller, and the event contains the corresponding filesystem-browser widget. The controller determines the base directories for that particular widget (somehow), walks that directory path, and passes the widget some data to render.</p>
<p>Two places I can think to store the base directories:</p>
<ol>
<li>The easy solution: make the base directories an instance variable on the widget and have the controller manipulate it to retain state for that widget. There's a conceptual issue with this, though: since the widget never looks at that instance variable, you're just projecting one of the responsibilities of the controller onto the widget.</li>
<li>The more (technically, maybe conceptually) complex solution: Keep a <code>{widget: base_directory_set}</code> mapping in the controller with weak key references.</li>
</ol>
<p>The second way allows for easy expansion of controller responsibilities later on, as putting things in the controller tends to do -- for example, if I decided I later wanted to determine the set of all the base directories for all those widgets.</p>
<p>There may be some piece of MVC knowledge I'm missing that solves this kind of problem well.</p>
http://stackoverflow.com/questions/1686235/wxpython-how-should-i-organize-per-widget-data-in-the-controller/1736618#17366180Answer by cdleary for wxPython: How should I organize per-widget data in the controller?cdleary2009-11-15T04:59:59Z2009-11-15T04:59:59Z<p>The solution I've currently adopted is, "per-widget controllers." (Maybe there's an existing name for it.) It delegates to a "parent" controller for any UI-wide functionality, but exists to control the widget and associate any relevant data on a per-widget basis.</p>
<p>The "per-widget controller" concept avoids projecting any irrelevant properties onto the widget itself. You can extend these controllers to register/unregister the controlled widgets on creation/destruction for those times when you want to perform a many-widget operation, thereby avoiding weakref magic.</p>
<p>For example:</p>
<pre><code>class FSBrowserController(wx.EvtHandler):
"""Widget-specific controller for filesystem browsers.
:ivar parent: Parent controller -- useful when UI-wide control is
necessary to respond to an event.
"""
def __init__(self, parent, frame, tree_ctrl, base_dirs):
self.parent = parent
self.frame = frame
self.tree_ctrl = tree_ctrl
self.base_dirs = base_dirs
frame.Bind(EVT_FS_REFRESH, self.refresh)
frame.Bind(wx.EVT_WINDOW_DESTROY, self._unregister)
self.refresh()
self._register()
def _register(self):
"""Register self with parent controller."""
self.parent._fsb_controllers.append(self)
def _unregister(self, event):
"""Unregister self with parent controller."""
if event.GetEventObject() == self.frame:
self.parent._fsb_controllers.remove(self)
def refresh(self, event=None):
"""Refresh the :ivar:`tree_ctrl` using :ivar:`base_dirs`."""
raise NotImplementedError
class Controller(wx.EvtHandler):
"""Main controller for the application.
Handles UI-wide behaviors.
"""
def __init__(self):
self._fsb_controllers = []
fsb_frame = FSBrowserFrame(parent=None)
FSBrowserController(self, fsb_frame, fsb_frame.tree_ctrl,
initial_base_dirs)
fsb_frame.Show()
</code></pre>
<p>This way, when the FSBrowserFrame is destroyed, the controller and associated data will naturally disappear with it.</p>
http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value2Why does stdlib.h's abs() family of functions return a signed value?cdleary2009-10-23T01:26:53Z2009-10-23T04:27:37Z
<p>The negative implication of this is noted in the man page:</p>
<blockquote>
<p>NOTES
Trying to take the absolute value of the most negative integer is
not
defined.</p>
</blockquote>
<p>What's the reasoning behind this and what's the best recourse for a person who would like to avoid undefined behavior? Do I have to resort to something like:</p>
<pre><code>unsigned uabs(signed val) {
return val > 0
? val
: (val == 1U << ((sizeof(val) * 8) - 1))
? -1U
: -val;
}
</code></pre>
<p>(Intentionally hacky to emphasize displeasure with stdlib ;-)</p>
<h2>Example</h2>
<p>Say you had a 4-bit signed value (for ease of understanding). unsigned max is 15, signed (positive) max is 7, signed (negative) min is -8, so abs(-8) won't fit into a signed value. Sure, you can represent it as -8, but then division and multiplication with the result don't work as expected.</p>
http://stackoverflow.com/questions/1081634/which-is-the-most-mature-python-xmpp-library-for-a-gchat-client4Which is the most mature Python XMPP library for a GChat client?cdleary2009-07-04T06:13:34Z2009-10-21T01:08:44Z
<p>There seem to be several options for Python XMPP client libraries -- I'm not totally sure what I'm getting myself into (just fiddling around at this point), so I'm looking for some advice on which XMPP library has the most mature/Pythonic client API. (Or, to be more objective about it, an assessment of the relative strengths/weaknesses of the available libraries.) TIA!</p>
http://stackoverflow.com/questions/613364/is-there-a-need-for-a-use-strict-python-compiler10Is there a need for a "use strict" Python compiler?cdleary2009-03-05T02:08:25Z2009-09-28T22:45:24Z
<p>There exist <a href="http://stackoverflow.com/questions/35470/are-there-any-static-analysis-tools-for-python">static analysis tools for Python</a>, but compile time checks tend to be diametrically opposed to the <a href="http://python-history.blogspot.com/2009/01/introduction-and-overview.html" rel="nofollow">run-time binding philosophy</a> that Python embraces. It's <em>possible</em> to wrap the standard Python interpreter with a static analysis tool to enforce some "<a href="http://perldoc.perl.org/strict.html" rel="nofollow">use strict</a>"-like constraints, but we don't see any widespread adoption of such a thing.</p>
<p>Is there something about Python that makes "use strict" behavior unnecessary or especially undesirable?</p>
<p>Alternatively, is the "use strict" behavior unnecessary in Perl, despite its widespread adoption?</p>
<p>Note: By "necessary" I mean "practically necessary", not strictly necessary. Obviously you <em>can</em> write Perl without "use strict," but (from what I've seen) most Perl programmers <em>do</em> use it.</p>
<p>Note: The Python interpreter-wrapper need not <em>require</em> "use strict"-like constraints -- you could use a pseudo-pragma similar to "use strict" that would be ignored by the normal interpreter. I'm not talking about adding a language-level feature.</p>
<p><hr /></p>
<p>Update: Explaining what "use strict" does in Perl per comments. (Link to official docs is in the first paragraph.)</p>
<p>The "use strict" directive has three distinct components, only two of which are really interesting:</p>
<ul>
<li><p>use strict vars: Statically checks lexically scoped variable usage in your program. (Keep in mind that, in Python, there is basically only <code>global</code> scope and <code>local</code> scope). Many Python linters check for this sort of thing. Since it's the only static analysis that they can do, the linters assume you use straightforward lexical scoping and warn you about things that appear wrong in that sense until you tell them to shut up; i.e.</p>
<pre><code>FOO = 12
foo += 3
</code></pre>
<p>If you're not doing anything fancy with your namespaces this can be useful to check for typos.</p></li>
<li><p>use strict refs: Prevents symbolic namespace dereferencing. Python's closest analog is using <code>locals()</code> and <code>globals()</code> to do symbolic binding and identifier lookup.</p></li>
<li><p>use strict subs: No real analog in Python.</p></li>
</ul>
http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns10Vim 80 column layout concernscdleary2008-10-24T22:14:01Z2009-09-04T18:23:45Z
<p>I feel like the way I do 80-column indication in Vim is incorrect: <code>set columns=80</code>. At times I also <code>set textwidth</code> but I like to be able to see and anticipate line overflow with the <code>set columns</code> alternative.</p>
<p>This has some unfortunate side effects -- I can't <code>set number</code> for fear of splitting between files that have different orders of line numbers; i.e. < 100 line files and >= 100 line files will require two different <code>set columns</code> values because of the extra column used for the additional digit display. I also start new (g)Vim sessions instead of splitting windows vertically, which forces me to use the window manager's clipboard -- <code>vsplit</code>s force me to do <code>set columns</code> every time I open or close a pane, so starting a new session is less hassle.</p>
<p>How do you handle the 80-character indication when you want to <code>set numbers</code>, vertically split, etc.?</p>
http://stackoverflow.com/questions/421512/should-language-specific-questions-contain-the-language-name-in-the-title6Should language-specific questions contain the language name in the title? [closed]cdleary2009-01-07T18:42:52Z2009-08-31T19:50:42Z
<p>I've seen questions edited to remove the language name from the title; i.e. <a href="http://stackoverflow.com/revisions/421232/list">brian d foy's edit # 2</a> from "Perl, case insensitive grep within an array" to "How do I find the case-insensitive unique elements of two arrays?" (Obviously this was a helpful clarification, but it also happened to remove the language name from the question.)</p>
<p>There seems to be some inconsistency in this practice across the site. On one hand, it introduces redundancy <em>within</em> the site due to the tag metadata that's present; however, <strong>search engines are known to be significantly influenced by title data</strong> and won't make an attempt to identify our (internal) tag metadata as more important than normal text.</p>
<p>Also, it seems like a search engine user will have an easier time with languages in the title for language-specific Q&A. Again, since tag metadata isn't immediately present in search results, <strong>it's easier for a search engine user who has no knowledge of Perl to skip over the result if Perl is right in the search result title</strong> than to visit the site and discover that the question isn't language-agnostic (or multi-lingual) as they had hoped.</p>
http://stackoverflow.com/questions/709036/why-do-languages-like-java-use-hierarchical-package-names-while-python-does-not8Why do languages like Java use hierarchical package names, while Python does not?cdleary2009-04-02T09:45:13Z2009-08-26T13:25:40Z
<p>I haven't done enterprise work in Java, but I often see the <a href="http://stackoverflow.com/questions/420945/java-package-name-convention-failure">reverse-domain-name package naming convention</a>. For example, for a Stack Overflow Java package you'd put your code underneath package <code>com.stackoverflow</code>.</p>
<p>I just ran across a Python package that uses the Java-like convention, and I wasn't sure what the arguments for and against it are, or whether they apply to Python in the same way as Java. What are the reasons you'd prefer one over the other? <strong>Do those reasons apply across the languages?</strong></p>
http://stackoverflow.com/questions/1276284/are-there-conclusive-studies-experiments-on-c-compilation-using-a-c-compiler2Are there conclusive studies/experiments on C compilation using a C++ compiler?cdleary2009-08-14T06:05:06Z2009-08-17T10:17:25Z
<p>I've seen a lot of arguments over the general performance of C code compiled with a C++ compiler -- <strong>I'm curious as to whether there are any solid experimental studies</strong> buried beneath all the anecdotal flame wars you find in web searches. I'm particularly interested in the GCC suite, but any data points would be interesting. (Comparing the assembly of "Hello, World!" is not as robust as I'd like. :-)</p>
<p>I'm generally assuming you use the "embedded style" flags -- no exceptions or RTTI. I also wouldn't mind knowing if there are studies on the compilation time itself. TIA!</p>
http://stackoverflow.com/questions/35538/validate-xhtml-in-python2Validate (X)HTML in Pythoncdleary2008-08-30T01:15:32Z2009-08-14T18:04:38Z
<p>What's the best way to go about validating that a document follows some version of HTML (prefereably that I can specify)? I'd like to be able to know where the failures occur, as in a web-based validator, except in a native Python app.</p>
http://stackoverflow.com/questions/408046/python-outlook-2007-com-primer2Python Outlook 2007 COM primercdleary2009-01-02T21:12:50Z2009-08-06T15:09:56Z
<p>I've been inspired by <a href="http://stackoverflow.com/questions/405724/modifying-microsoft-outlook-contacts-from-python">Modifying Microsoft Outlook contacts from Python</a> -- I'm looking to try scripting some of my more annoying Outlook uses with the <code>win32com</code> package. I'm a Linux user trapped in a Windows users' cubicle, so I don't know much about COM.</p>
<p>I'm looking for information on whether COM allows for reflection via <code>win32com</code> or whether there's documentation on the Outlook 2007 COM objects. Any other pointers that you think will be helpful are welcome!</p>
<p>I've found <a href="http://wiki.exchange4linux.org/e4lwiki/n-h.support.wiki/uploads/programming_outlook_with_python.pdf" rel="nofollow">Programming Outlook With Python</a>, but I'm using Outlook 2007 so I'd like some more information on how much of the Outlook 2000 information is still applicable.</p>
<p>TIA!</p>
http://stackoverflow.com/questions/1136673/when-should-i-use-varargs-in-designing-a-python-api1When should I use varargs in designing a Python API?cdleary2009-07-16T10:20:20Z2009-07-17T17:22:16Z
<p>Is there a good rule of thumb as to when you should prefer varargs function signatures in your API over passing an iterable to a function? ("varargs" being short for "variadic" or "variable-number-of-arguments"; i.e. <code>*args</code>)</p>
<p>For example, <code>os.path.join</code> has a vararg signature:</p>
<pre><code>os.path.join(first_component, *rest) -> str
</code></pre>
<p>Whereas <code>min</code> allows either:</p>
<pre><code>min(iterable[, key=func]) -> val
min(a, b, c, ...[, key=func]) -> val
</code></pre>
<p>Whereas <code>any</code>/<code>all</code> only permit an iterable:</p>
<pre><code>any(iterable) -> bool
</code></pre>
http://stackoverflow.com/questions/1123855/select-on-multiple-python-multiprocessing-queues1"select" on multiple Python multiprocessing Queues?cdleary2009-07-14T06:58:17Z2009-07-14T08:24:14Z
<p>What's the best way to wait (without spinning) until something is available in either one of two (multiprocessing) <a href="http://docs.python.org/library/multiprocessing.html#multiprocessing.Queue" rel="nofollow">Queues</a>, where both reside on the same system?</p>
http://stackoverflow.com/questions/1102825/moving-files-under-python/1102857#11028570Answer by cdleary for Moving files under pythoncdleary2009-07-09T09:43:11Z2009-07-09T09:43:11Z<p>You will need to state the full path it's being moved to:</p>
<pre><code>src = 'C:\a'
dst_dir = 'C:\b'
last_part = os.path.split(src)[1]
os.rename(src, os.path.join(dst_dir, last_part))
</code></pre>
<p>Actually, it looks like <code>shutil.move</code> will do what you want by looking at its documentation:</p>
<blockquote>
<p>If the destination is a directory or a symlink to a directory, the
source
is moved inside the directory.</p>
</blockquote>
<p>(And its <a href="http://svn.python.org/view/python/trunk/Lib/shutil.py?view=markup" rel="nofollow">source</a>.)</p>
http://stackoverflow.com/questions/1095026/python-strings-match-case/1095058#10950581Answer by cdleary for python strings / match casecdleary2009-07-07T21:45:33Z2009-07-07T21:51:35Z<p>You probably want to take a look at the <a href="http://docs.python.org/library/csv.html#module-csv" rel="nofollow">CSV module</a>, which has readers and writers that will enable you to create transforms.</p>
<pre><code>>>> from StringIO import StringIO
>>> from csv import DictReader
>>> fh = StringIO("""
... id,case1,case2,case3
...
... 123,null,X,Y
...
... 342,X,X,Y
...
... 456,null,null,null
...
... 789,null,null,X
... """.strip())
>>> dr = DictReader(fh)
>>> dr.next()
{'case1': 'null', 'case3': 'Y', 'case2': 'X', 'id': '123'}
</code></pre>
<p>At which point you can do something like:</p>
<pre><code>>>> from csv import DictWriter
>>> out_fh = StringIO()
>>> writer = DictWriter(fh, fieldnames=dr.fieldnames)
>>> for mapping in dr:
... writer.write(dict((k, v) for k, v in mapping.items() if v != 'null'))
...
</code></pre>
<p>The last bit is just pseudocode -- not sure <code>dr.fieldnames</code> is actually a property. Replace <code>out_fh</code> with the filehandle that you'd like to output to.</p>
http://stackoverflow.com/questions/1093884/python-error/1093905#10939052Answer by cdleary for Python Errorcdleary2009-07-07T18:14:12Z2009-07-07T18:14:12Z<p>Your tuple is misshaped</p>
<pre><code>f = open("%s/%s" % (config['vsftp']['user_dir'], (vusername), 'wr'))
</code></pre>
<p>Should be</p>
<pre><code>f = open("%s/%s" % (config['vsftp']['user_dir'], (vusername)), 'wr')
</code></pre>
http://stackoverflow.com/questions/1091756/multiple-python-classes-in-a-single-file/1091773#10917733Answer by cdleary for Multiple Python classes in a single filecdleary2009-07-07T11:19:41Z2009-07-07T11:27:55Z<p>There's a mantra, "flat is better than nested," that generally discourages an overuse of hierarchy. I'm not sure there's any hard and fast rules as to when you want to create a new module -- for the most part, people just use their discretion to group logically related functionality (classes and functions that pertain to a particular problem domain).</p>
<p>Good <a href="http://mail.python.org/pipermail/python-list/2006-December/589818.html" rel="nofollow">thread from the Python mailing list</a>, and a quote by Fredrik Lundh:</p>
<blockquote>
<p>even more important is that in Python,
you don't use classes for every-
thing; if you need factories,
singletons, multiple ways to create
objects, polymorphic helpers, etc, you
use plain functions, not classes or
static methods.</p>
<p>once you've gotten over the "it's all
classes", use modules to organize
things in a way that makes sense to
the code that uses your components.<br />
make the import statements look good.</p>
</blockquote>
http://stackoverflow.com/questions/288968/can-i-use-named-groups-in-a-perl-regex-to-get-the-results-in-a-hash6Can I use named groups in a Perl regex to get the results in a hash?cdleary2008-11-14T01:28:40Z2009-07-07T10:44:31Z
<p>Is it possible to perform a named-group match in Perl's regex syntax as with Python's? I always bind the <code>$n</code> values to proper names after matching, so I'd find it more convenient to do it in the regex itself if it's possible.</p>
<p>Python does it like so:</p>
<pre><code>>>> import re
>>> regex = re.compile(r'(?P<count>\d+)')
>>> match = regex.match('42')
>>> print match.groupdict()
{'count': '42'}
</code></pre>
<p>I know the <code>?P</code> indicates that it's a Python-specific regex feature, but I'm hoping it's in Perl in a different way or was added later on. Is there any way to get a result hash in a similar manner in Perl?</p>
http://stackoverflow.com/questions/1089269/pythonic-way-to-log-specific-things-to-a-file/1089292#10892920Answer by cdleary for Pythonic way to log specific things to a file?cdleary2009-07-06T21:26:42Z2009-07-06T21:35:19Z<p>Assuming you're calling to <code>setup.py build</code> as a subprocess I think you really just want output redirection, which you can get via the subprocess invocation.</p>
<pre><code>from subprocess import Popen
with open('/var/logs/pypi/django/%s.build.log' % time_str, 'w') as fh:
Popen('python setup.py build'.split(), stdout=fh, stderr=fh).communicate()
</code></pre>
<p>If you're calling <code>setup.py build</code> as a Python subroutine (i.e. importing that module and invoking it's main routine) then you could try to add another <code>logging.Handler</code> (<code>FileHandler</code>) to a logger in that module if such a logger exists.</p>
<p><strong>Update</strong></p>
<p>Per answer comment, it sounds like you just want to <a href="http://docs.python.org/library/logging.html#logging.Logger.addHandler" rel="nofollow">add a new</a> <a href="http://docs.python.org/library/logging.html#filehandler" rel="nofollow">FileHandler</a> to your current module's logger, then log things into that, then <a href="http://docs.python.org/library/logging.html#logging.Logger.removeHandler" rel="nofollow">remove it from the logger later on</a>. Is that more what you're looking for?</p>
http://stackoverflow.com/questions/1087248/how-do-i-color-output-text-from-perl-script-on-windows/1087259#108725913Answer by cdleary for How do I color output text from Perl script on Windows?cdleary2009-07-06T14:23:49Z2009-07-06T14:23:49Z<p>For any terminal that supports <a href="http://en.wikipedia.org/wiki/ANSI%5Fescape%5Fcode" rel="nofollow">ANSI escape codes</a> you can use the <a href="http://search.cpan.org/dist/ANSIColor/ANSIColor.pm" rel="nofollow">Term::ANSIColor package</a> available on CPAN.</p>
<p>From the Wikipedia page:</p>
<blockquote>
<p>Console windows in Windows versions
based on NT (Windows NT 4.0, Windows
2000, Windows XP, Windows Server 2003,
Windows Vista and Windows Server 2008)
do not natively support ANSI Escape
sequences, though some support is
possible.</p>
</blockquote>
<p>Don't know any more Windows-specific information than that, I'm a POSIX guy. :-)</p>
http://stackoverflow.com/questions/1087019/can-i-be-warned-when-i-used-a-generator-function-by-accident/1087150#10871501Answer by cdleary for Can I be warned when I used a generator function by accidentcdleary2009-07-06T14:02:40Z2009-07-06T14:07:55Z<p>Because the <code>return</code> keyword is applicable in both generator functions and regular functions, there's nothing you could possibly check (as @Christopher mentions). The <code>return</code> keyword in a generator indicates that a StopIteration exception should be raised.</p>
<p>If you try to <code>return</code> with a value from within a generator (which doesn't make sense, since <code>return</code> just means "stop iteration"), the compiler will complain at compile-time -- this may catch some copy-and-paste mistakes:</p>
<pre><code>>>> def foo():
... yield 12
... return 15
...
File "<stdin>", line 3
SyntaxError: 'return' with argument inside generator
</code></pre>
<p>I personally just advise against copy and paste programming. :-)</p>
<p>From the PEP:</p>
<blockquote>
<p>Note that return means "I'm done, and have nothing interesting to
return", for both generator functions and non-generator functions.</p>
</blockquote>
http://stackoverflow.com/questions/1086531/django-information-captured-from-urls-available-in-template-files/1086558#10865584Answer by cdleary for Django: information captured from URLs available in template files?cdleary2009-07-06T11:42:37Z2009-07-06T11:47:45Z<p>No, that's not possible within the URLConf -- the dispatcher has a fixed set of things it does. (It takes the group dictionary from your regex match and passes it as keyword arguments to your view function.) Within your (custom) view function, you should be able to manipulate how those values are passed into the template context.</p>
<p>Writing a custom view to map year to "foo" given this URLConf would be something like:</p>
<pre><code>def custom_view(request, year, foo):
context = RequestContext(request, {'foo': year})
return render_to_response('my_template.tmpl', context)
</code></pre>
<p>The reason that you get a <code>NameError</code> in the case you're describing is because Python is looking for an identifier called <code>year</code> in the surrounding scope and it doesn't exist there -- it's only a substring in the regex pattern.</p>
http://stackoverflow.com/questions/1086404/string-to-object-in-js/1086424#10864244Answer by cdleary for String to object in JScdleary2009-07-06T10:49:11Z2009-07-06T10:49:11Z<p>If I'm understanding correctly:</p>
<pre><code>var properties = string.split(', ');
var obj = {};
properties.forEach(function(property) {
var tup = property.split(':');
obj[tup[0]] = tup[1];
});
</code></pre>
<p>I'm assuming that the property name is to the left of the colon and the string value that it takes on is to the right.</p>
<p>Note that <code>Array.forEach</code> is JavaScript 1.6 -- you may want to use a toolkit for maximum compatibility.</p>
http://stackoverflow.com/questions/1084977/python-how-can-i-import-all-variables/1086390#10863900Answer by cdleary for Python: How can I import all variables?cdleary2009-07-06T10:33:08Z2009-07-06T10:42:42Z<p>Just for some context, most linters will flag <code>from module import *</code> with a warning, because it's prone to namespace collisions that will cause headaches down the road.</p>
<p>Nobody has noted yet that, as an alternative, you can use the</p>
<pre><code>from a import name, age
</code></pre>
<p>form and then use <code>name</code> and <code>age</code> directly (without the <code>a.</code> prefix). The <code>from [module] import [identifiers]</code> form is more future proof because you can easily see when one import will be overriding another.</p>
<p>Also note that "variables" aren't different from functions in Python in terms of how they're addressed -- every identifier like <code>name</code> or <code>sayBye</code> is pointing at some kind of object. The identifier <code>name</code> is pointing at a string object, <code>sayBye</code> is pointing at a function object, and <code>age</code> is pointing at an integer object. When you tell Python:</p>
<pre><code>from a import name, age
</code></pre>
<p>you're saying "take those objects pointed at by <code>name</code> and <code>age</code> within module <code>a</code> and point at them in the current scope with the same identifiers".</p>
<p>Similarly, if you want to point at them with different identifiers on import, you can use the</p>
<pre><code>from a import sayBye as bidFarewell
</code></pre>
<p>form. The same function object gets pointed at, except in the current scope the identifier pointing at it is <code>bidFarewell</code> whereas in module <code>a</code> the identifier pointing at it is <code>sayBye</code>.</p>
http://stackoverflow.com/questions/1815907/whats-the-idiomatic-way-to-turn-a-single-char-into-a-string-in-java/1815917#1815917Comment by cdleary on What's the idiomatic way to turn a single char into a string in Java?cdleary2009-11-29T16:10:50Z2009-11-29T16:10:50ZAnd you won the race by two seconds... the Java tag sure is fast-moving!http://stackoverflow.com/questions/1795111/is-there-a-cross-platform-way-to-open-a-file-browser-in-pythonComment by cdleary on Is there a cross-platform way to open a file browser in Python?cdleary2009-11-25T21:27:26Z2009-11-25T21:27:26Z@S.Lott: Not a Python-process owned GUI window -- shelling out to a native subprocess in the same sense that <code>webbrowser</code> does, appropriate to the user's operating environment.http://stackoverflow.com/questions/1686235/wxpython-how-should-i-organize-per-widget-data-in-the-controller/1738316#1738316Comment by cdleary on wxPython: How should I organize per-widget data in the controller?cdleary2009-11-16T04:19:52Z2009-11-16T04:19:52ZThis makes perfect sense and demonstrates my imperfect understanding of MVC theory -- for data that is "observable" (or shared across widgets), regardless of how "business" it is, the MVC pattern is more useful. Even though the systems I'm targeting have no inotify-like abilities (making the refresh command necessary), I could see retargeting this widget for platforms that did gain through observation. I think I have a much better understanding of where MVC practicality beats purity now -- thanks Alex!http://stackoverflow.com/questions/1686235/wxpython-how-should-i-organize-per-widget-data-in-the-controller/1731587#1731587Comment by cdleary on wxPython: How should I organize per-widget data in the controller?cdleary2009-11-15T04:20:08Z2009-11-15T04:20:08ZMy hang-up is that the displayed directories are not "business data" (i.e. it's not serialized or stored away anywhere), it's just metadata about the state of the UI. wxPython is just a library for windowing systems, so the MVC separation is all my own effort towards a maintainable system.http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value/1611321#1611321Comment by cdleary on Why does stdlib.h's abs() family of functions return a signed value?cdleary2009-10-24T06:46:57Z2009-10-24T06:46:57ZAgreed that's the general case counter-argument. Just a nitpick clarification: you never have to check whether something is below <code>INT_MIN</code> if it's a flavor of <code>int</code>, so in this particular case of <code>unsigned abs(signed)</code> you would not have to check the argument at all before invocation.http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value/1610957#1610957Comment by cdleary on Why does stdlib.h's abs() family of functions return a signed value?cdleary2009-10-23T09:22:55Z2009-10-23T09:22:55ZIt shouldn't be any slower -- the common assembly sequence for absolute value is ((x + y) ^ y), which works fine for the maximum negative value resulting in an unsigned word.http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value/1611321#1611321Comment by cdleary on Why does stdlib.h's abs() family of functions return a signed value?cdleary2009-10-23T09:09:51Z2009-10-23T09:09:51ZI can buy this -- type promotion is complex and you can't blame anyone for wishing everything fit in a signed value. I guess if I could go back in time to argue with the committee I would say that abs should be as accurate as possible and that C programmers already have to know how to deal with function return types and type promotion in expressions, but I left my time machine on a bus one time.http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value/1610954#1610954Comment by cdleary on Why does stdlib.h's abs() family of functions return a signed value?cdleary2009-10-23T02:55:02Z2009-10-23T02:55:02ZYes, I understand how two's complement arithmetic works -- I'm more asking about the choice of the return type. That corner case of minimum negative integer not returning a correct value is a really annoying correctness issue that you could resolve by returning unsigned and getting compiler warnings if you tried to assign it to signed.http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1609321#1609321Comment by cdleary on Idiomatic Python has_onecdleary2009-10-23T00:15:55Z2009-10-23T00:15:55Z<code>functools.reduce(operator.__add__, ...)</code> is what sum is for!http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1583512#1583512Comment by cdleary on Idiomatic Python has_onecdleary2009-10-17T23:53:01Z2009-10-17T23:53:01Z@gnibbler: You could probably make a case for it, but I don't particularly like idioms that seem to violate fundamental laws of logic. (Law of the excluded middle is slightly more universal than Python ;-)http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1583445#1583445Comment by cdleary on Idiomatic Python has_onecdleary2009-10-17T23:49:47Z2009-10-17T23:49:47ZI like this better than the question's .count(True) for the inline idiom. The corresponding generator expression is uglier in this particular case, as sum(1 for item in seq if predicate(item)), so I think map is the way to go. Technically, though, the genexp doesn't rely on the predicate returning a bool.http://stackoverflow.com/questions/1583364/idiomatic-python-hasone/1583512#1583512Comment by cdleary on Idiomatic Python has_onecdleary2009-10-17T23:43:48Z2009-10-17T23:43:48ZIt's clever, but I think that's probably a bad thing. I wouldn't blame people for looking at it concluding it never returns true.http://stackoverflow.com/questions/1276284/are-there-conclusive-studies-experiments-on-c-compilation-using-a-c-compilerComment by cdleary on Are there conclusive studies/experiments on C compilation using a C++ compiler?cdleary2009-08-19T00:03:54Z2009-08-19T00:03:54Z@dwelch: I'd be happy to see evidence either (both) ways, as that would at least demonstrate something. Right now I can't find anything but speculation and anecdotes. :-)http://stackoverflow.com/questions/1276284/are-there-conclusive-studies-experiments-on-c-compilation-using-a-c-compiler/1276801#1276801Comment by cdleary on Are there conclusive studies/experiments on C compilation using a C++ compiler?cdleary2009-08-15T02:24:23Z2009-08-15T02:24:23Z@sbi: Yes, I understand that many people would expect that result. The question asks for experimental evidence. It's all about the science!http://stackoverflow.com/questions/1276284/are-there-conclusive-studies-experiments-on-c-compilation-using-a-c-compilerComment by cdleary on Are there conclusive studies/experiments on C compilation using a C++ compiler?cdleary2009-08-14T23:22:43Z2009-08-14T23:22:43Z@onebyone: It would be begging the question if I were actually making the assumption that the statement is correct. I am asking for real-world experimental evidence that demonstrates that conclusion.