User wilberforce - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:54:35Zhttp://stackoverflow.com/feeds/user/38851http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1762764/oracle-equivalent-in-postgres/1763179#17631792Answer by wilberforce for @ oracle equivalent in postgreswilberforce2009-11-19T13:08:52Z2009-11-19T13:08:52Z<p><code>\i</code> is the <code>psql</code> equivalent of the Oracle SQL*Plus @ command.</p>
<p>If you're using psql to run the Main.sql script, you can put:</p>
<pre><code>\i path/to/child.sql
</code></pre>
<p>... in Main.sql. The difference between this and the <code>EXECUTE SCRIPT</code> command pointed out by Tzury is that there the path in <code>FILENAME</code> would refer to a path on the server's file system, while the <code>\i</code> command refers to a path on the machine running <code>psql</code>.</p>
http://stackoverflow.com/questions/1696305/python-stop-execution-after-a-maximum-time/1697606#16976061Answer by wilberforce for Python: stop execution after a maximum timewilberforce2009-11-08T19:22:48Z2009-11-08T19:22:48Z<p>If you don't need CPython-compatible code (it doesn't sound like you do), you could use the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx" rel="nofollow">.NET facilities</a> for process management, like the <code>System.Diagnostics.Process</code> class. It might be a bit simpler than using <code>os.popen</code>.</p>
http://stackoverflow.com/questions/1399223/unhandled-generatorexitexception-thrown-while-importing-library-in-embedded-ironp/1399848#13998480Answer by wilberforce for Unhandled GeneratorExitException thrown while importing library in embedded IronPythonwilberforce2009-09-09T13:56:18Z2009-09-09T13:56:18Z<p>Not really an answer (I don't have access to IronPython here), but if you try running this script:</p>
<pre><code>import traceback
try:
import random
except:
traceback.print_exc()
</code></pre>
<p>...it will display a Python-level traceback rather than a C# one - that might make it clearer what's happening.</p>
<p>(If sys.stdout isn't hooked up to anything you're capturing, you could use <code>traceback.format_exc()</code> instead.)</p>
http://stackoverflow.com/questions/1108749/limits-on-postgresql-schema-changes-inside-transactions1Limits on PostgreSQL schema changes inside transactions?wilberforce2009-07-10T10:09:06Z2009-07-10T11:27:11Z
<p>My database background is with Oracle, so I was surprised to discover that Postgres includes schema changes in transactions - if you begin one, create a table and then rollback, the table goes away. It works for adding and removing columns as well. Obviously this is very nice.</p>
<p>We're about to make some changes to the way we deploy schema deltas that rely on this feature. Before we do, I'd like to find out how far the transactional guarantee extends, but I can't find any information on it in the documentation. I assume I'm just using the wrong search terms - my searches just go to big lists of commands which include the words 'transaction', 'create' and 'table'. </p>
<p>Can anyone give me some pointers to docs or discussions about transactional schema changes in Postgres? (We're using 8.2.13, although we'll be upgrading in the not too distant future.) Or just some details about statement that won't be included in the transaction?</p>
http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/901860#9018600Answer by wilberforce for IronPython 2.0 executes code slowly.wilberforce2009-05-23T16:30:13Z2009-05-23T16:30:13Z<p>There are definitely some things that are much slower in IronPython than they are in Python. Often this is because you're hitting a weird corner case in the implementation. It's worth trying to reduce it down to a very simple script that exhibits the performance difference and sending that to the <a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" rel="nofollow">IronPython mailing list</a> - the devs are very responsive. </p>
<p>There's been a series of interesting blog posts about IronPython performance recently - <a href="http://ironpython-urls.blogspot.com/2009/05/python-jython-and-ironpython.html" rel="nofollow">this is a good overview</a>. The summary is that you can get very good performance, once you avoid the pitfalls, and the IP team are very interested in finding out about these problems and fixing them quickly. Narrowing down a repro to find the pitfall is the hardest part - once you've worked out what triggers the behaviour it's generally easy to work around.</p>
http://stackoverflow.com/questions/751339/why-does-this-pyd-file-not-import-on-some-computers/751364#7513642Answer by wilberforce for Why does this pyd file not import on some computers?wilberforce2009-04-15T11:53:12Z2009-04-16T07:22:48Z<p>You could try something like <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a>, to watch what DLLs it tries to load. I'd assume that one of the other DLLs it relies on can't be found.</p>
<p>Edit: It looks like you've already managed to get some useful info out of it, but I'll clarify how you could reduce the deluge of information that procmon produces.</p>
<p>Use the filter function to specify the command line (in this case, require that the command line contains python). This will show you messages only from the process you're interested in. Then you can filter out all success results, so you can see which DLL it's looking for.</p>
<p>Obviously there are lots of other things you can filter on, but this is how I've got results in the past. It's a really handy tool for working out what's going on in situations like this.</p>
<p>(Tools like depends or DependencyWalker are also good for finding out what DLLs a library relies on - they give the static information while procmon will show you the dynamic view. Both of them can be useful.)</p>
http://stackoverflow.com/questions/694968/ironclad-import-error/696643#6966431Answer by wilberforce for Ironclad import errorwilberforce2009-03-30T09:59:19Z2009-03-30T09:59:19Z<p>Ironclad is still a work in progress - it doesn't support every function in the Python C API yet. The developers are adding new ones as they encounter them when trying to get specific extension modules working. </p>
<p>The message looks alarming, but I don't think the stack corruption it mentions is accurate any more - it's a holdover from the early days of the project. I think the Py_IsInitialized function has been implemented in svn now, so you could try bugging them to make a new release. (I don't know the acm module - it's possible it uses other functions that also aren't implemented yet.)</p>
<p>You can probably get more help from the <a href="http://groups.google.com/group/c-extensions-for-ironpython" rel="nofollow">Ironclad discussion group</a>. I don't think the Ironclad developers read Stack Overflow, and they wouldn't be expecting to see Ironclad questions here (although it's a good sign!). </p>
http://stackoverflow.com/questions/612788/best-python-templating-library-to-facilitate-code-generation/615220#6152203Answer by wilberforce for Best Python templating library to facilitate code generation.wilberforce2009-03-05T15:19:59Z2009-03-05T15:19:59Z<p>If you're doing code generation, you might find <a href="http://nedbatchelder.com/code/cog/" rel="nofollow">Cog</a> useful - it's specifically for code generation, rather than being a generally applicable templating language.</p>
http://stackoverflow.com/questions/614365/catching-ironpython-exception-in-c/615170#615170-1Answer by wilberforce for Catching Ironpython Exception in C#wilberforce2009-03-05T15:06:34Z2009-03-05T15:06:34Z<p>The way IronPython maps .NET exceptions to Python ones isn't always straightforward - a lot of exceptions are reported as SystemError (although if you import the .NET exception type you can specify that in the except clause). You can get the Python type of the exception using:</p>
<pre><code>type(e).__name__
</code></pre>
<p>If you want the .NET exception type, make sure you have <code>import clr</code> in the module (which makes .NET attributes available on objects (like the <code>ToUpper</code> method on strings)). Then you can get hold of the .NET exception using the <code>.clsException</code> attribute:</p>
<pre><code>import clr
try:
1/0
except Exception, e:
print type(e).__name__
print type(e.clsException).__name__
</code></pre>
<p>prints:</p>
<pre><code>ZeroDivisionError (the python exception)
DivideByZeroException (the corresponding .NET exception)
</code></pre>
<p>An example of catching the specific .NET exception you want:</p>
<pre><code>from System import DivideByZeroException
try:
1/0
except DivideByZeroException:
print 'caught'
</code></pre>
http://stackoverflow.com/questions/612028/how-to-sort-list-of-fileinfo-in-ironpython/612995#6129951Answer by wilberforce for how to sort list of FileInfo in IronPythonwilberforce2009-03-04T23:37:52Z2009-03-04T23:37:52Z<p>The Pythonic way of doing this would be:</p>
<pre><code>fileInfos = list(DirectoryInfo(path).GetFiles())
fileInfos.sort(key=lambda f: f.CreationTime, reverse=True)
</code></pre>
<p>The list sort method takes a key function that is used to get the sort key for each item.</p>
http://stackoverflow.com/questions/574604/has-anyone-used-scipy-with-ironpython/574919#5749193Answer by wilberforce for Has anyone used SciPy with IronPython?wilberforce2009-02-22T13:21:58Z2009-02-22T13:21:58Z<p>Some of my workmates are working on <a href="http://code.google.com/p/ironclad/" rel="nofollow">Ironclad</a>, a project that will make extension modules for CPython work in IronPython. It's still in development, but parts of numpy, scipy and some other modules already work. You should try it out to see whether the parts of scipy you need are supported. </p>
<p>It's an open-source project, so if you're interested you could even help. In any case, some feedback about what you're trying to do and what parts we should look at next is helpful too.</p>
http://stackoverflow.com/questions/563673/referencing-an-assembly-in-the-application-path/570692#5706921Answer by wilberforce for Referencing an Assembly in the Application Pathwilberforce2009-02-20T18:16:43Z2009-02-20T18:16:43Z<p>The way we generally add references at work is the following:</p>
<pre><code>import sys
import clr
# forward slashes work fine here and don't need to be escaped
sys.path.append('c:/path/to/directory/containing/dll')
clr.AddReference('System.Data.SQLite') # note lack of .dll
</code></pre>
http://stackoverflow.com/questions/471814/issues-with-embedding-ironpython-2-in-a-c-web-application/473167#4731675Answer by wilberforce for Issues with embedding IronPython 2 in a C# web application wilberforce2009-01-23T14:57:27Z2009-01-23T14:57:27Z<p>Once the assembly's loaded, you can execute the import in the <code>Scope</code> you're using to run the script:</p>
<pre><code>ScriptEngine engine = Python.CreateEngine();
engine.Runtime.LoadAssembly(a);
string code = "from MyAssembly import MyClass";
ScriptSource source = engine.CreateScriptSourceFromString(code, "<import>", SourceCodeKind.Statements);
CompiledCode c = source.Compile();
Scope scope = engine.CreateScope();
c.Execute(scope);
// then run your script in the same scope
</code></pre>
<p>We do something similar in our product.</p>
<p>(Hopefully this is valid C# - I actually tried it in IronPython itself, because it was more convenient.)</p>
http://stackoverflow.com/questions/362428/ironpython-studio-forms-question/362868#3628681Answer by wilberforce for Ironpython Studio forms questionwilberforce2008-12-12T14:15:31Z2008-12-12T14:15:31Z<p>I'm not totally clear on the problem. You can certainly define a subclass of <code>System.Windows.Forms.Form</code> in IronPython in one module, and then import the form subclass in some other module:</p>
<pre><code># in form.py
from System.Windows.Forms import Form, Button, MessageBox
class TrivialForm(Form):
def __init__(self):
button = Button(Parent=self, Text='Click!')
button.Click += self.show_message
def show_message(self, sender, args):
MessageBox.Show('Stop that!')
# in main.py
import clr
clr.AddReference('System.Windows.Forms')
from System.Windows.Forms import Application
from form import TrivialForm
if __name__ == '__main__':
f = TrivialForm()
Application.Run(f)
</code></pre>
<p>Is it that IronPython Studio's form designer/code generator won't let you structure your code like that? (I've never used it.)</p>
http://stackoverflow.com/questions/344442/notification-library-for-windows/344649#3446492Answer by wilberforce for Notification Library for Windowswilberforce2008-12-05T17:53:10Z2008-12-05T17:53:10Z<p>Are you developing the application in Python? It depends what GUI toolkit you're using.</p>
<p>If you're using wxPython, you could try <a href="http://xoomer.alice.it/infinity77/main/ToasterBox.html" rel="nofollow">ToasterBox</a>, or the wxPopupWindow.</p>
http://stackoverflow.com/questions/333995/how-to-detect-that-python-code-is-being-executed-through-the-debugger/334090#3340903Answer by wilberforce for How to detect that Python code is being executed through the debugger?wilberforce2008-12-02T14:25:10Z2008-12-02T14:25:10Z<p>Python debuggers (as well as profilers and coverage tools) use the <code>sys.settrace</code> function (in the <code>sys</code> module) to register a callback that gets called when interesting events happen.</p>
<p>If you're using Python 2.6, you can call <code>sys.gettrace()</code> to get the current trace callback function. If it's not <code>None</code> then you can assume you should be passing debug parameters to the JVM.</p>
<p>It's not clear how you could do this pre 2.6.</p>
http://stackoverflow.com/questions/333706/string-splittext-or-text-split-whats-the-diference/334013#3340133Answer by wilberforce for string.split(text) or text.split() what's the diference?wilberforce2008-12-02T14:04:17Z2008-12-02T14:04:17Z<p>An extra note: <code>str</code> is the string type, as S.Lott points out above. That means that these two forms:</p>
<pre><code>'a b c'.split()
str.split('a b c')
# both return ['a', 'b', 'c']
</code></pre>
<p>...are equivalent, because <code>str.split</code> is the unbound method, while <code>s.split</code> is a bound method of a <code>str</code> object. In the second case, the string that gets passed in to <code>str.split</code> is used as <code>self</code> in the method.</p>
<p>This doesn't make much difference here, but it's an important feature of how Python's object system works.</p>
<p><a href="http://www.python.org/doc/2.6/library/stdtypes.html#methods" rel="nofollow">More info about bound and unbound methods.</a></p>
http://stackoverflow.com/questions/201261/making-excel-functions-affect-other-cells/324248#3242481Answer by wilberforce for Making Excel functions affect 'other' cellswilberforce2008-11-27T17:07:50Z2008-11-27T17:07:50Z<p>While you can't do this in Excel, it's possible in <a href="http://www.resolversystems.com" rel="nofollow">Resolver One</a> (although it's still a pretty odd thing to do).</p>
<p>It's a spreadsheet that allows you to define custom functions in Python that you can then call from a cell formula in the grid. </p>
<p>As an example of what you're asking, you might want to define a <code>safeDivide</code> function that (instead of raising a <code>ZeroDivisionError</code>) told you about the problem by colouring the denominator cell, and putting an error message beside it. You can define it like this:</p>
<pre><code>def safeDivide(numerator, cellRange):
if not isinstance(cellRange, CellRange):
raise ValueError('denominator must be a cell range')
denominator = cellRange.Value
if denominator == 0:
cell = cellRange.TopLeft
cell.BackColor = Color.Red
cell.Offset(1, 0).Value = 'Tried to divide by zero'
return 0
return numerator / denominator
</code></pre>
<p>There's an extra wrinkle: functions that get passed cells just get passed the cell value, so to work around that we insist on being passed a one-cell cellrange for the denominator. </p>
<p>If you're trying to do unusual things with spreadsheets which don't quite fit into Excel, or you're interested in using the power of Python to work with your spreadsheet data, it's worth having a look at Resolver One.</p>
http://stackoverflow.com/questions/317184/c-using-keyword-when-and-when-not-to-use-it/317240#3172400Answer by wilberforce for C# USING keyword - when and when not to use it?wilberforce2008-11-25T12:55:01Z2008-11-25T12:55:01Z<p>To add to the other answers, you should use <code>using</code> (or an explicit Dispose) whenever an object holds any resources other than managed memory. Examples would be things like files, sockets, database connections, or even GDI drawing handles.</p>
<p>The garbage collector would eventually finalise these objects, but only at some unspecified time in the future. You can't rely on it happening in a timely fashion, and you might have run out of that resource in the meantime. </p>
http://stackoverflow.com/questions/316410/is-there-a-good-numpy-clone-for-jython/316662#3166623Answer by wilberforce for Is there a good NumPy clone for Jython?wilberforce2008-11-25T08:14:15Z2008-11-25T08:14:15Z<p>I can't find anything that's a clone of numpy, but there's a long list of Java numerics packages <a href="http://math.nist.gov/javanumerics/" rel="nofollow">here</a> - these should all be usable from Jython. Which one meets your requirements depends on what you're doing with numpy, I guess.</p>
http://stackoverflow.com/questions/315533/scientific-data-visualization-and-the-net-framework/315695#3156951Answer by wilberforce for Scientific data visualization and the .NET frameworkwilberforce2008-11-24T22:12:06Z2008-11-24T22:12:06Z<p>At <a href="http://www.resolversystems.com" rel="nofollow">Resolver Systems</a> we're working on a project called <a href="http://code.google.com/p/ironclad" rel="nofollow">Ironclad</a>, which will eventually (hopefully) allow you to use cPython extensions like matplotlib and numpy transparently from IronPython.</p>
<p>At the moment we're focusing on numpy (large parts of it are usable now), but matplotlib and friends are also high on the list.</p>
<p>It's an open-source project, and we could do with help. You should have a look at whether it could be useful.</p>
http://stackoverflow.com/questions/306313/python-is-operator-behaves-unexpectedly-with-integers/307594#3075944Answer by wilberforce for Python "is" operator behaves unexpectedly with integerswilberforce2008-11-21T01:58:53Z2008-11-21T01:58:53Z<p>For immutable value objects, like ints, strings or datetimes, object identity is not especially useful. It's better to think about equality. Identity is essentially an implementation detail for value objects - since they're immutable, there's no effective difference between having multiple refs to the same object or multiple objects.</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/302786#30278629Answer by wilberforce for Why didn't unit testing work out for your project?wilberforce2008-11-19T17:57:52Z2008-11-19T17:57:52Z<p>Unit testing isn't a silver bullet. </p>
<p>Our product at work is a 40 kloc (Python) application with ~120 kloc of tests, and the full test suite (including functional tests that remote control the GUI) take hours to run (distributed on several integration machines). </p>
<p>We have some testing problems:</p>
<ol>
<li><p>They take too long to run - we often just run the unit tests to check in, which occasionally leads to broken integration builds and backing out commits.</p></li>
<li><p>Some functional tests fail spuriously. Sometimes this is due to weird screenshot failures on Vista, sometimes tests are sensitive to timing differences. When we see these we add retries or try to make the interactions more deterministic, but chasing these false alarms can cost a bit.</p></li>
<li><p>Some unit tests are written in a very 'mock-heavy' style - they know too much about the implementation, so that when it changes you have to change the tests too, which can be a real pain. It's tricky to find a balance between mocking out too much stuff on one hand and having tests that test too many layers on the other, but we're still learning.</p></li>
</ol>
<p>However, they're definitely a net win. When we fix defects, we add tests to avoid regressions (as well as the tests we create as we build features), so changes to a complex application tend not to break other things.</p>
<p>That gives us a huge safety net, of the kind you couldn't get from compiler checks (well, the Haskell/OCaml people might say otherwise, but you certainly couldn't get it from a Java compiler). </p>
<p>We can make big changes and be confident that we haven't broken things. I find it hard to imagine working on a largish application without the security a large, well-maintained test suite gives. Well, working <em>effectively</em> on one.</p>
<p>It doesn't save you from bugs - we (or our users!) still find things we didn't anticipate that break. But it helps.</p>
http://stackoverflow.com/questions/302225/setting-up-paths-pth-or-sys-path/302500#3025001Answer by wilberforce for Setting up paths: .pth or sys.pathwilberforce2008-11-19T16:33:10Z2008-11-19T16:33:10Z<p>I just tried putting a <code>.pth</code> file in directory <code>a</code> with <code>a.py</code>, pointing at directory <code>b</code>, and module <code>a</code> couldn't import the module in <code>b</code>.</p>
<p>Looking at <code>site.py</code> (which processes <code>.pth</code> files) it looks like <code>.pth</code> files in the current directory aren't used. It only picks up those that are in <code>site-packages</code> or <code>~/site-packages</code>.</p>
<p>You could put one in one of those locations, or as S.Lott suggests, use <code>PYTHONPATH</code>, or stick with what you're doing with the module that adjusts the path.</p>
http://stackoverflow.com/questions/289978/whats-the-simplest-way-to-access-mssql-with-python-or-ironpython/301746#3017465Answer by wilberforce for What's the simplest way to access mssql with python or ironpython?wilberforce2008-11-19T12:27:37Z2008-11-19T12:27:37Z<p>Everyone else seems to have the cPython -> SQL Server side covered. If you want to use IronPython, you can use the standard ADO.NET API to talk to the database:</p>
<pre><code>import clr
clr.AddReference('System.Data')
from System.Data.SqlClient import SqlConnection, SqlParameter
conn_string = 'data source=<machine>; initial catalog=<database>; trusted_connection=True'
connection = SqlConnection(conn_string)
connection.Open()
command = connection.CreateCommand()
command.CommandText = 'select id, name from people where group_id = @group_id'
command.Parameters.Add(SqlParameter('group_id', 23))
reader = command.ExecuteReader()
while reader.Read():
print reader['id'], reader['name']
connection.Close()
</code></pre>
<p>If you've already got IronPython, you don't need to install anything else.</p>
<p>Lots of docs available <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.aspx" rel="nofollow">here</a> and <a href="http://www.ironpython.info/index.php/Contents#Databases" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/301528/how-to-convert-a-date-in-python/301580#3015808Answer by wilberforce for How to convert a date in python?wilberforce2008-11-19T11:05:41Z2008-11-19T11:05:41Z<p>The other two answers are fine, but if you actually want the date for something else, you can use the <code>datetime</code> module:</p>
<pre><code>from datetime import datetime
d = datetime.strptime('2007-07-18 10:03:19', '%Y-%m-%d %H:%M:%S')
day_string = d.strftime('%Y-%m-%d')
</code></pre>
<p>It might be overkill for now, but it'll come in useful. You can see all of the format specifiers <a href="http://docs.python.org/library/time.html#time.strftime" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/300047/why-is-fuse-not-using-the-class-supplied-in-fileclass/301437#3014371Answer by wilberforce for Why is fuse not using the class supplied in file_classwilberforce2008-11-19T10:10:28Z2008-11-19T10:10:28Z<p>Looking at the code of the Fuse class (which is a maze of twisty little passages creating method proxies), I see this bit (which is a closure used to create a setter inside <code>Fuse.MethodProxy._add_class_type</code>, line 865):</p>
<pre><code> def setter(self, xcls):
setattr(self, type + '_class', xcls)
for m in inits:
self.mdic[m] = xcls
for m in proxied:
if hasattr(xcls, m):
self.mdic[m] = self.proxyclass(m)
</code></pre>
<p>When you do <code>self.file_class = self.get_file</code>, this gets called with <code>self.get_file</code>, which is a bound method. The loop over proxied attributes is expecting to be able to get the attributes off the class you set, to put them into its <code>mdic</code> proxy dictionary after wrapping them, but they aren't there, because it's a bound method, rather than a class. Since it can't find them, it reverts to calling them on <code>Dstorage</code>.</p>
<p>So, long story short, you can't use a callable that returns an instance (kind of a pseudo-class) instead of a class here, because Fuse is introspecting the object that you set to find the methods it should call. </p>
<p>You need to assign a class to <code>file_class</code> - if you need to refer back to the parent instance, you can use the nested class trick they show in the docs.</p>
http://stackoverflow.com/questions/296036/does-python-optimize-modules-when-they-are-imported-multiple-times/301344#3013441Answer by wilberforce for Does python optimize modules when they are imported multiple times?wilberforce2008-11-19T09:00:41Z2008-11-19T09:00:41Z<p>The internal registry of imported modules is the <code>sys.modules</code> dictionary, which maps module names to module objects. You can look there to see all the modules that are currently imported.</p>
<p>You can also pull some useful tricks (if you need to) by monkeying with <code>sys.modules</code> - for example adding your own objects as pseudo-modules which can be imported by other modules.</p>
http://stackoverflow.com/questions/301068/python-string-literals/301293#3012932Answer by wilberforce for Python - String Literalswilberforce2008-11-19T08:17:59Z2008-11-19T08:17:59Z<p>What Harley said, except the last point - it's not actually necessary to change the '/'s into '\'s before calling open. Windows is quite happy to accept paths with forward slashes.</p>
<pre><code>infile = open('c:/folder/subfolder/file.txt')
</code></pre>
<p>The only time you're likely to need the string normpathed is if you're passing to to another program via the shell (using <code>os.system</code> or the <code>subprocess</code> module).</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/302786#302786Comment by wilberforce on Why didn't unit testing work out for your project?wilberforce2009-10-14T10:13:59Z2009-10-14T10:13:59ZDiscipline, basically. Also, the manager understands the value of the tests, so there's more pressure to get the test working than to turn it off.http://stackoverflow.com/questions/612788/best-python-templating-library-to-facilitate-code-generation/615220#615220Comment by wilberforce on Best Python templating library to facilitate code generation.wilberforce2009-09-03T10:16:00Z2009-09-03T10:16:00ZHmm - it's in the cheeseshop, but the site it points to is dead. The text of (a version of) the module is in the Python wiki: <a href="http://wiki.python.org/moin/PathModule" rel="nofollow">wiki.python.org/moin/PathModule</a>. Not sure whether that one will work with Cog. It'd be worth asking Ned Batchelder (Cog's author) if he could start bundling path.py, if it's been abandoned.http://stackoverflow.com/questions/1108749/limits-on-postgresql-schema-changes-inside-transactionsComment by wilberforce on Limits on PostgreSQL schema changes inside transactions?wilberforce2009-07-10T12:21:40Z2009-07-10T12:21:40ZGah - those are both good answers. In the end the deciding factor was that the grep is hopefully a more exhaustive list. (Although it doesn't mention REINDEX.) Thanks.http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/901860#901860Comment by wilberforce on IronPython 2.0 executes code slowly.wilberforce2009-05-24T09:23:11Z2009-05-24T09:23:11ZWe definitely saw odd performance degradations (going from 1 to 2) in places where it seemed like what we were doing couldn't be related to the problem, which actually turned out to be things like method dispatch caches overflowing. Many of them seemed to be consequences of the architectural changes in extracting the DLR, and optimisation techniques. Dino and the team were very helpful in working out what was happening. http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/901860#901860Comment by wilberforce on IronPython 2.0 executes code slowly.wilberforce2009-05-24T09:13:56Z2009-05-24T09:13:56ZAh, right. Actually, everything I've said holds true for isolating performance regressions from IP 1 to IP 2 - for example, a lot of the work in porting Resolver One to IP 2 was finding this kind of problem and working with the dev team to diagnose the cause. http://stackoverflow.com/questions/751457/can-a-method-call-be-chained-to-the-set-built-in-and-why-not/753944#753944Comment by wilberforce on can a method call be chained to the 'set()' built-in? (and why not?)wilberforce2009-04-16T08:28:44Z2009-04-16T08:28:44ZNice answer. sorted and reversed don't change the rationale given here, because they are non-destructive - they don't change the original container.http://stackoverflow.com/questions/753986/is-there-a-more-pythonic-way-to-build-this-dictionary/754154#754154Comment by wilberforce on Is there a more pythonic way to build this dictionary?wilberforce2009-04-16T08:11:37Z2009-04-16T08:11:37ZIn this case, where there's a function already defined to get the key, I'd say either approach is nice. If the zip/map required a lambda as well, that'd tip the balance in favour of a comprehension.
In general, if a map or filter requires a lambda, you're better off with a comprehension.http://stackoverflow.com/questions/542908/help-needed-to-convert-code-from-c-to-python/542942#542942Comment by wilberforce on Help needed to convert code from C# to Python.wilberforce2009-02-13T14:15:49Z2009-02-13T14:15:49ZThis is right, except that the event hook line should be 'bar.Ready += bar_Ready' if you assume that the Portal and Agent classes are still implemented in C#.http://stackoverflow.com/questions/479236/how-do-i-simulate-biased-die-in-pythonComment by wilberforce on How do I simulate biased die in python?wilberforce2009-01-26T10:56:48Z2009-01-26T10:56:48ZI think you mean an N-sided die.
An N-dimensional die is quite different.http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347139#347139Comment by wilberforce on What are five things you hate about your favorite language?wilberforce2008-12-17T18:23:31Z2008-12-17T18:23:31ZOn googling - weird! I've always assumed that was some kind of cross between a hiccup and a cough, rather than a legitimate alternative spelling to hiccup. Thanks again StackOverflow!http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347139#347139Comment by wilberforce on What are five things you hate about your favorite language?wilberforce2008-12-17T18:20:23Z2008-12-17T18:20:23ZHow do you pronounce hiccough? Isn't the 'ough' the same in hiccough and cough? http://stackoverflow.com/questions/340128/ironpython-for-unit-testing-over-cComment by wilberforce on IronPython For Unit Testing over C#wilberforce2008-12-04T13:33:06Z2008-12-04T13:33:06Z"Hairy pointy managers" is a great phrase!http://stackoverflow.com/questions/289978/whats-the-simplest-way-to-access-mssql-with-python-or-ironpython/301746#301746Comment by wilberforce on What's the simplest way to access mssql with python or ironpython?wilberforce2008-12-02T16:08:37Z2008-12-02T16:08:37ZUnfortunately, ADO.NET is a bit more verbose than the corresponding Python DBAPI code (and this is true of the .NET class library in general). But it's not too bad, and easy enough to wrap in a DBAPI module. I've done this for working with SQLAlchemy.http://stackoverflow.com/questions/317184/c-using-keyword-when-and-when-not-to-use-it/317240#317240Comment by wilberforce on C# USING keyword - when and when not to use it?wilberforce2008-11-29T22:51:29Z2008-11-29T22:51:29ZMarc: you're right. I guess I was really trying to explain the motivation for why the implementer might have made a class IDisposable, rather than garbage collection solving all resource management problems.http://stackoverflow.com/questions/317963/standard-c-or-python-libraries-to-compute-standard-deviation-of-normal-distributiComment by wilberforce on Standard C or Python libraries to compute standard deviation of normal distribution.wilberforce2008-11-25T18:40:52Z2008-11-25T18:40:52ZThat's only true of a standard normal distribution, I think.