User Charles Anderson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:18:13Z http://stackoverflow.com/feeds/user/11677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1857668/c-visual-studio-character-encoding-issues/1859417#1859417 1 Answer by Charles Anderson for C++ Visual Studio character encoding issues Charles Anderson 2009-12-07T11:24:27Z 2009-12-07T11:24:27Z <p>I tried this code:</p> <pre><code>#include &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;sstream&gt; int main() { std::wstringstream wss; wss &lt;&lt; L"àéêù"; std::wstring s = wss.str(); const wchar_t* p = s.c_str(); std::wcout &lt;&lt; ws.str() &lt;&lt; std::endl; std::wofstream file("C:\\a.txt"); file &lt;&lt; p &lt;&lt; endl; return 0; } </code></pre> <p>The debugger showed that wss, s and p all had the expected values (i.e. "àéêù"), as did the output file. However, what appeared in the console was óúÛ¨.</p> <p>The problem seems to be in the Visual Studio console, not the C++.</p> http://stackoverflow.com/questions/1613901/to-put-the-output-of-a-server-side-script-into-an-html-file-should-you-use-incl 0 To put the output of a server side script into an HTML file, should you use #include or #exec? Charles Anderson 2009-10-23T14:37:38Z 2009-11-27T13:20:02Z <p>If I want to insert the output of a script into an HTML file using server side includes, is it better to use</p> <pre><code>&lt;!--#include virtual="/cgi-bin/myscript.py" --&gt; </code></pre> <p>or</p> <pre><code>&lt;!--#exec cmd="python /cgi-bin/myscript.py" --&gt; </code></pre> <p>?</p> http://stackoverflow.com/questions/259269/stdgetline-returns/259286#259286 8 Answer by Charles Anderson for std::getline() returns Charles Anderson 2008-11-03T17:02:45Z 2009-11-24T15:03:09Z <p>The istream returned by getline() is having its operator void*() method implicitly called, which returns whether the stream has run into an error. As such it's making more checks than a call to eof().</p> http://stackoverflow.com/questions/1722260/what-creates-the-stack/1722298#1722298 0 Answer by Charles Anderson for What creates the stack? Charles Anderson 2009-11-12T13:47:47Z 2009-11-12T13:47:47Z <p>If you want to implement a stack of your own, try using std::stack&lt;>. If you're talking about the stack that local variables are on, that's created by the C++ runtime system.</p> http://stackoverflow.com/questions/1671527/keyboard-assignment-in-visual-studio/1679731#1679731 3 Answer by Charles Anderson for Keyboard Assignment in Visual Studio Charles Anderson 2009-11-05T10:46:25Z 2009-11-05T10:46:25Z <p>I had a similar problem (on Windows XP), where my keyboard settings would change without me knowing. @ would swap with “, # with /, etc. It turned out that there’s a built-in Windows keyboard shortcut to swap between keyboard layouts, and it’s ALT + Shift! I must have been accidentally pressing these together every so often. </p> <p>I fixed the problem by going into the Control Panel, selecting 'Regional and Language Options', then moving to the Language tab and clicking the Details button. This shows you a list of all the alternative keyboard layouts that you have available. I just deleted all but the one I wanted, so that I no longer have an alternative layout to swap to.</p> http://stackoverflow.com/questions/1674081/visual-studio-solution-behavior-in-xcode/1674155#1674155 1 Answer by Charles Anderson for Visual Studio Solution behavior in XCode Charles Anderson 2009-11-04T14:39:14Z 2009-11-04T16:33:02Z <p>An Xcode project can contain other Xcode projects, so you can set up a top level Xcode project to simulate a VS solution file. It's not a perfect match; for instance, there's no Find in Files command that will act across all the sub-projects, though you can set up custom searches that will do the equivalent for you. However, you can tell the top level project to build, and it will build all the sub-projects.</p> <p>To do this, start by creating an empty project: File > New > Empty Project. </p> <p>Then add a target to it by right clicking the Targets icon and selecting Add > New Target... > Aggregate.</p> <p>Now start adding your library projects to the empty project: right click the project icon, and select Add > Existing Files..., then navigate to your .Xcode project file.</p> http://stackoverflow.com/questions/1643197/what-is-this-c-technique-for-adding-types-to-a-class-called 4 What is this C++ technique for adding types to a class called? Charles Anderson 2009-10-29T11:56:00Z 2009-10-29T12:10:09Z <p>I've just found some C++ code (at <a href="http://msdn.microsoft.com/en-us/library/k8336763%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/k8336763%28VS.71%29.aspx</a>), which uses a technique I've never seen before to add types to an existing class:</p> <pre><code>class Testpm { public: void m_func1() { cout &lt;&lt; "m_func1\n"; } int m_num; }; // Define derived types pmfn and pmd. // These types are pointers to members m_func1() and m_num, respectively. void (Testpm::*pmfn)() = &amp;Testpm::m_func1; int Testpm::*pmd = &amp;Testpm::m_num; int main() { Testpm ATestpm; Testpm *pTestpm = new Testpm; // Access the member function (ATestpm.*pmfn)(); (pTestpm-&gt;*pmfn)(); // Parentheses required since * binds // Access the member data ATestpm.*pmd = 1; pTestpm-&gt;*pmd = 2; cout &lt;&lt; ATestpm.*pmd &lt;&lt; endl &lt;&lt; pTestpm-&gt;*pmd &lt;&lt; endl; } </code></pre> <p>Can someone please tell me what this technique for defining derived types is called, or point me to some documentation on it? I've never come across it in 13 years of using C++, and would like to end my ignorance.</p> http://stackoverflow.com/questions/1518979/cvs-commands-have-stopped-working-in-macos-x-terminal 1 CVS commands have stopped working in MacOS X Terminal Charles Anderson 2009-10-05T09:12:12Z 2009-10-16T09:20:57Z <p>Today, for the first time in several months, I needed to use CVS on the command line on my Mac (MacOS X 10.4), and discovered that the commands no longer work. In response to:</p> <pre><code>cvs diff -u </code></pre> <p>I got:</p> <pre><code>cvs diff: CVSROOT requires a path spec: cvs diff: :(gserver|kserver|pserver):[[user][:password]@]host[:[port]]/path cvs diff: [:(ext|server):][[user]@]host[:]/path cvs diff: in directory .: cvs diff: ignoring CVS/Root because it does not contain a valid root. cvs diff: No CVSROOT specified! Please use the `-d' option cvs [diff aborted]: or set the CVSROOT environment variable. </code></pre> <p>However, I am happily using SmartCVS 7.0.8 on the same machine. The directory I was in contains a CVS folder, with a Root file that looks exactly as I'd expect it to.</p> <p>Can anyone suggest how command line CVS could have stopped working, when SmartCVS is still functioning perfectly?</p> http://stackoverflow.com/questions/1518979/cvs-commands-have-stopped-working-in-macos-x-terminal/1519891#1519891 1 Answer by Charles Anderson for CVS commands have stopped working in MacOS X Terminal Charles Anderson 2009-10-05T12:47:52Z 2009-10-16T09:20:57Z <p>I've found the problem. SmartCVS is creating Root files with a back slash in them instead of a forward slash. If I edit the Root file to put in a forward slash instead, 'cvs diff' works fine. (SmartCVS, on the other hand, now refuses to recognise the existence of my source tree.)</p> http://stackoverflow.com/questions/323424/py2exe-fails-to-generate-an-executable 9 py2exe fails to generate an executable Charles Anderson 2008-11-27T10:31:51Z 2009-10-15T06:23:53Z <p>I am using python 2.6 on XP. I have just installed py2exe, and I can successfully create a simple hello.exe from a hello.py. However, when I try using py2exe on my real program, py2exe produces a few information messages but fails to generate anything in the dist folder. </p> <p>My setup.py looks like this:</p> <pre><code>from distutils.core import setup import py2exe setup(console=['ServerManager.py']) </code></pre> <p>and the py2exe output looks like this:</p> <pre><code>python setup.py py2exe running py2exe creating C:\DevSource\Scripts\ServerManager\build creating C:\DevSource\Scripts\ServerManager\build\bdist.win32 creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe\collect-2.6 creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe\bundle-2.6 creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe\temp creating C:\DevSource\Scripts\ServerManager\dist *** searching for required modules *** *** parsing results *** creating python loader for extension 'wx._misc_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_misc_.pyd -&gt; wx._misc_.pyd) creating python loader for extension 'lxml.etree' (C:\Python26\lib\site-packages\lxml\etree.pyd -&gt; lxml.etree.pyd) creating python loader for extension 'win32pipe' (C:\Python26\lib\site-packages\win32\win32pipe.pyd -&gt; win32pipe.pyd) creating python loader for extension 'win32api' (C:\Python26\lib\site-packages\win32\win32api.pyd -&gt; win32api.pyd) creating python loader for extension 'select' (C:\Python26\DLLs\select.pyd -&gt; select.pyd) creating python loader for extension '_socket' (C:\Python26\DLLs\_socket.pyd -&gt; _socket.pyd) creating python loader for extension 'unicodedata' (C:\Python26\DLLs\unicodedata.pyd -&gt; unicodedata.pyd) creating python loader for extension 'wx._windows_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_windows_.pyd -&gt; wx._windows_.pyd) creating python loader for extension 'wx._core_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_core_.pyd -&gt; wx._core_.pyd) creating python loader for extension 'wx._gdi_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_gdi_.pyd -&gt; wx._gdi_.pyd) creating python loader for extension 'wx._controls_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_controls_.pyd -&gt; wx._controls_.pyd) creating python loader for extension '_ssl' (C:\Python26\DLLs\_ssl.pyd -&gt; _ssl.pyd) creating python loader for extension 'bz2' (C:\Python26\DLLs\bz2.pyd -&gt; bz2.pyd) *** finding dlls needed *** </code></pre> <p>py2exe seems to have found all my imports (though I was a bit surprised to see win32 mentioned, as I am not explicitly importing it). Also, my program starts up quite happily with this command:</p> <pre><code>python ServerManager.py </code></pre> <p>Clearly I am doing something fundamentally wrong, but in the absence of any error messages from py2exe I have no idea what.</p> http://stackoverflow.com/questions/1516742/displaying-integers-in-a-wxpython-listctrl 2 Displaying integers in a wxpython listctrl Charles Anderson 2009-10-04T15:58:18Z 2009-10-04T17:01:12Z <p>I have a wxPython ListCtrl with five columns. Four of these hold strings, the last one has integer values. I have been storing these as strings (i.e. '4', '17', etc.). However, now that I have added a ColumnSorterMixin to let me sort specific columns in the list, I'm finding, of course, that the integer column is being sorted lexically rather than numerically.</p> <p>Is there a simple way of fixing this?</p> http://stackoverflow.com/questions/305924/in-python-how-can-you-get-the-name-of-a-member-functions-class 2 In Python, how can you get the name of a member function's class? Charles Anderson 2008-11-20T16:30:30Z 2009-10-04T13:37:49Z <p>I have a function that takes another function as a parameter. If the function is a member of a class, I need to find the name of that class. E.g.</p> <pre><code>def analyser(testFunc): print testFunc.__name__, 'belongs to the class, ... </code></pre> <p>I thought </p> <pre><code>testFunc.__class__ </code></pre> <p>would solve my problems, but that just tells me that testFunc is a function.</p> http://stackoverflow.com/questions/306130/python-decorator-makes-function-forget-that-it-belongs-to-a-class 10 Python decorator makes function forget that it belongs to a class Charles Anderson 2008-11-20T17:24:39Z 2009-10-04T13:37:35Z <p>I am trying to write a decorator to do logging:</p> <pre><code>def logger(myFunc): def new(*args, **keyargs): print 'Entering %s.%s' % (myFunc.im_class.__name__, myFunc.__name__) return myFunc(*args, **keyargs) return new class C(object): @logger def f(): pass C().f() </code></pre> <p>I would like this to print:</p> <pre><code>Entering C.f </code></pre> <p>but instead I get this error message:</p> <pre><code>AttributeError: 'function' object has no attribute 'im_class' </code></pre> <p>Presumably this is something to do with the scope of 'myFunc' inside 'logger', but I've no idea what.</p> http://stackoverflow.com/questions/1380219/how-to-force-the-build-to-be-out-of-date-when-a-text-file-is-modified/1393305#1393305 0 Answer by Charles Anderson for How to force the build to be out of date, when a text file is modified? Charles Anderson 2009-09-08T10:52:33Z 2009-09-14T09:26:57Z <p>This works in VS2005. If you're not using that, some of the settings may be in different places or with different names.</p> <p>Add the text file to your project, right click on it in the Solution Explorer and select 'Properties'. Under Configuration Properties > General make sure that the file is not excluded from the build. Under Custom Build Step > General, put your existing post-build command as the Command Line setting. Make sure you specify your .txt file as the output file. Now F7 should spot changes to the text file and run your batch file.</p> http://stackoverflow.com/questions/1393987/how-to-append-values-in-xcconfig-variables/1398738#1398738 0 Answer by Charles Anderson for How to append values in xcconfig variables? Charles Anderson 2009-09-09T10:11:56Z 2009-09-09T12:13:11Z <p>This works for me in Xcode 2.4.1:</p> <pre> GCC_PREPROCESSOR_DEFINITIONS = "$(GCC_PREPROCESSOR_DEFINITIONS) NEW_VALUE" </pre> <p>You do have to sometimes allow a few seconds between editing a config file and the change showing up in a target's Build Info.</p> http://stackoverflow.com/questions/1335439/urllib-urlopen-doesnt-work-with-a-url-that-a-browser-accepts 1 urllib.urlopen() doesn't work with a URL that a browser accepts Charles Anderson 2009-08-26T15:09:57Z 2009-08-26T15:46:11Z <p>If I point Firefox at <a href="http://bitbucket.org/tortoisehg/stable/wiki/Home/ReleaseNotes" rel="nofollow">http://bitbucket.org/tortoisehg/stable/wiki/Home/ReleaseNotes</a>, I get a page of HTML. But if I try this in Python:</p> <pre> import urllib site = 'http://bitbucket.org/tortoisehg/stable/wiki/Home/ReleaseNotes' req = urllib.urlopen(site) text = req.read() </pre> <p>I get the following:</p> <p>500 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/924628/how-to-set-breakpoint-in-a-dependent-xcode-project/1310942#1310942 0 Answer by Charles Anderson for How to set breakpoint in a dependent xcode project Charles Anderson 2009-08-21T09:29:36Z 2009-08-21T09:29:36Z <p>I've had similar problems with Xcode. The solution for me is to make sure that there is also a breakpoint in the main project that gets hit (as Kent mentions in his third point). I don't understand why this works though.</p> <p>You should also only set breakpoints in a project when you've got it open. If you don't, they can start misbehaving: still stopping the flow of execution after you've disabled or deleted them, or not working when you think they're enabled.</p> http://stackoverflow.com/questions/1310734/use-of-edit-selecttolastgoback-in-visual-studio 0 Use of Edit.SelectToLastGoBack in Visual Studio Charles Anderson 2009-08-21T08:34:19Z 2009-08-21T08:39:06Z <p>There is a command in Visual Studio 2005 called Edit.SelectToLastGoBack (bound to Ctrl + =). </p> <p>I presume it is supposed to select all the text between the current cursor position and the last 'Go Back' point, but I can't work out the algorithm it's using for deciding what that point is.</p> <p>Does anyone know how to use this potentially very useful command?</p> http://stackoverflow.com/questions/221376/putting-copyright-symbol-into-a-python-file 4 Putting Copyright Symbol into a Python File Charles Anderson 2008-10-21T10:15:16Z 2009-08-05T20:48:45Z <p>I need to include a copyright statement at the top of every Python source file I produce:</p> <pre><code># Copyright: © 2008 etc. </code></pre> <p>However, when I then run such a file I get this message:</p> <p>SyntaxError: Non-ASCII character '\xa9' in file MyFile.py on line 3, but no encoding declared; see <a href="http://www.python.org/peps/pep-0263.html" rel="nofollow">http://www.python.org/peps/pep-0263.html</a> for details.</p> <p>Apparently Python isn't happy about the copyright symbol because it assumes the source file is all in ASCII. Either I need to make my first line be:</p> <pre><code># -*- coding: iso-8859-1 -*- </code></pre> <p>to tell Python I'm using Latin encoding, or I can change the copyright statement to: </p> <pre><code># Copyright: \xa9 2008 etc. </code></pre> <p>which just possibly doesn't have the same legal standing.</p> <p>Is there a more elegant solution?</p> http://stackoverflow.com/questions/944481/how-to-use-nodefaultlibs-option-in-compilation/949354#949354 2 Answer by Charles Anderson for How to use /NODEFAULTLIBS option in compilation ? Charles Anderson 2009-06-04T08:54:30Z 2009-06-04T08:54:30Z <p>First you need to work out which library is causing the conflict, if you can. Does the link warning tell you anything?</p> <p>Then you need to open the property pages for this project, and go to Linker -> Command Line. In the 'Additional Options' area, type:</p> <p>/NODEFAULTLIB:xxx.lib</p> <p>where xxx.lib is the conflicting library. However, if you couldn't work out which library it is, try just:</p> <p>/NODEFAULTLIB</p> http://stackoverflow.com/questions/919897/how-to-find-a-thread-id-in-python 0 How to find a thread id in Python Charles Anderson 2009-05-28T09:04:24Z 2009-05-28T09:30:13Z <p>I have a multi-threading Python program, and a utility function, writeLog(message), that writes out a timestamp followed by the message. Unfortunately, the resultant log file gives no indication of which thread is generating which message. </p> <p>I would like writeLog() to be able to add something to the message to identify which thread is calling it. Obviously I could just make the threads pass this information in, but that would be a lot more work. Is there some thread equivalent of os.getpid() that I could use?</p> http://stackoverflow.com/questions/868510/problem-using-py2app-with-the-lxml-package 3 Problem using py2app with the lxml package Charles Anderson 2009-05-15T12:52:37Z 2009-05-20T15:15:54Z <p>I am trying to use 'py2app' to generate a standalone application from some Python scripts. The Python uses the 'lxml' package, and I've found that I have to specify this explicitly in the setup.py file that 'py2app' uses. However, the resulting application program still won't run on machines that haven't had 'lxml' installed.</p> <p>My Setup.py looks like this:</p> <pre><code>from setuptools import setup OPTIONS = {'argv_emulation': True, 'packages' : ['lxml']} setup(app=[MyApp.py], data_files=[], options={'py2app' : OPTIONS}, setup_requires=['py2app']) </code></pre> <p>Running the application produces the following output:</p> <pre><code>MyApp Error An unexpected error has occurred during execution of the main script ImportError: dlopen(/Users/ake/XXXX/XXXX/MyApp.app/Contents/Resources/lib/python2.5/lxml/etree.so, 2): Symbol not found: _xmlSchematronParse Referenced from: /Users/ake/XXXX/XXXX/MyApp.app/Contents/Resources/lib/python2.5/lxml/etree.so Expected in: dynamic lookup </code></pre> <p>The symbol '_xmlSchematronParse' is from a library called 'libxml2' that 'lxml' depends on. The version that comes preinstalled with Mac OS X isn't up to date enough for 'lxml', so I had to install version 2.7.2 (in /usr/local). py2app, for some reason, is linking in the version in /Developer/SDKs/MacOSX10.3.9.sdk/usr/lib. When I run my application as a Python script though, the correct version is found. (I checked this just now by hiding the 2.7.2 version.)</p> <p>So my question now is, how can I tell py2app where to look for libraries?</p> http://stackoverflow.com/questions/868510/problem-using-py2app-with-the-lxml-package/888551#888551 0 Answer by Charles Anderson for Problem using py2app with the lxml package Charles Anderson 2009-05-20T15:15:54Z 2009-05-20T15:15:54Z <p>Found it. py2app has a 'frameworks' option to let you specify frameworks, and also dylibs. My setup.py file now looks like this:</p> <pre><code>from setuptools import setup DATA_FILES = [] OPTIONS = {'argv_emulation': True, 'packages' : ['lxml'], 'frameworks' : ['/usr/local/libxml2-2.7.2/lib/libxml2.2.7.2.dylib'] } setup(app=MyApp.py, data_files=DATA_FILES, options={'py2app' : OPTIONS}, setup_requires=['py2app']) </code></pre> <p>and that's fixed it.</p> <p>Thanks for the suggestions that led me here.</p> http://stackoverflow.com/questions/580985/vs2005-c-broken-vtables/581056#581056 0 Answer by Charles Anderson for VS2005 C++ broken vtables Charles Anderson 2009-02-24T09:22:05Z 2009-02-24T09:22:05Z <p>Whenever I've had a message like this, the answer has always involved recompiling some part or all of the code. I'd try a full rebuild as a first step. Sqook's suggestion about an external library also sounds plausible, and again would involve you recompiling that library with the same calling conventions as your main code, if that was possible.</p> <p>I have sometimes found that the Build command can miss files that need to be recompiled, which can lead to your message. Again, a full rebuild will straighten things out.</p> http://stackoverflow.com/questions/482745/namespaces-for-enum-types-best-practices/482790#482790 4 Answer by Charles Anderson for namespaces for enum types - best practices Charles Anderson 2009-01-27T09:39:34Z 2009-01-27T09:39:34Z <p>I would definitely avoid using a class for this; use a namespace instead. The question boils down to whether to use a namespace or to use unique ids for the enum values. Personally, I'd use a namespace so that my ids could be shorter and hopefully more self-explanatory. Then application code could use a 'using namespace' directive and make everything more readable.</p> <p>From your example above:</p> <pre><code>using namespace Colors; void setPenColor( const e c ) { switch (c) { default: assert(false); break; case cRed: //... break; case cBlue: //... //... } } </code></pre> http://stackoverflow.com/questions/468560/is-there-a-way-to-automatically-sort-the-using-directives-alphabetically-in-visua/469038#469038 2 Answer by Charles Anderson for Is there a way to automatically sort the using directives alphabetically in Visual Studio 2005? Charles Anderson 2009-01-22T13:08:39Z 2009-01-22T13:08:39Z <p>If you've got Visual Assist, that's got a 'Sort Selected Lines' command that will do what you need.</p> http://stackoverflow.com/questions/464617/insert-tracepoint-how-to-set-the-default-message/468792#468792 1 Answer by Charles Anderson for Insert Tracepoint: how to set the default message? Charles Anderson 2009-01-22T11:40:11Z 2009-01-22T11:40:11Z <p>Go into the registry and alter the value of the key HKCU\Software\Microsoft\VisualStudio\8.0\Debugger\DefaultTracepointMessage.</p> http://stackoverflow.com/questions/443147/c-mix-new-delete-between-libs/443240#443240 5 Answer by Charles Anderson for c++ mix new/delete between libs? Charles Anderson 2009-01-14T14:54:29Z 2009-01-14T14:54:29Z <p>Yes, you will. A simple solution is to provide Create and Delete functions in your library that can be called from the main application. The Create function will perform the new and return a pointer, which is later passed into the Delete function for deletion.</p> http://stackoverflow.com/questions/337870/python-subprocess-call-fails-when-using-pythonw-exe 3 Python subprocess.call() fails when using pythonw.exe Charles Anderson 2008-12-03T16:54:17Z 2008-12-22T14:19:21Z <p>I have some Python code that works correctly when I use python.exe to run it, but fails if I use pythonw.exe.</p> <pre> def runStuff(commandLine): outputFileName = 'somefile.txt' outputFile = open(outputFileName, "w") try: result = subprocess.call(commandLine, shell=True, stdout=outputFile) except: print 'Exception thrown:', str(sys.exc_info()[1]) myThread = threading.Thread(None, target=runStuff, commandLine=['whatever...']) myThread.start() </pre> <p>The message I get is:</p> <pre> Exception thrown: [Error 6] The handle is invalid </pre> <p>However, if I don't specify the 'stdout' parameter, subprocess.call() starts okay.</p> <p>I can see that pythonw.exe might be redirecting output itself, but I can't see why I'm blocked from specifying stdout for a new thread.</p> http://stackoverflow.com/questions/337870/python-subprocess-call-fails-when-using-pythonw-exe/386343#386343 0 Answer by Charles Anderson for Python subprocess.call() fails when using pythonw.exe Charles Anderson 2008-12-22T14:19:21Z 2008-12-22T14:19:21Z <p>For the record, my code now looks like this:</p> <pre><code>def runStuff(commandLine): outputFileName = 'somefile.txt' outputFile = open(outputFileName, "w") if guiMode: result = subprocess.call(commandLine, shell=True, stdout=outputFile, stderr=subprocess.STDOUT) else: proc = subprocess.Popen(commandLine, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.PIPE) proc.stdin.close() proc.wait() result = proc.returncode outputFile.write(proc.stdout.read()) </code></pre> <p>Note that, due to an apparent bug in the subprocess module, the call to Popen() has to specify a pipe for stdin as well, which we close immediately afterwards.</p> http://stackoverflow.com/questions/1674081/visual-studio-solution-behavior-in-xcode/1674155#1674155 Comment by Charles Anderson on Visual Studio Solution behavior in XCode Charles Anderson 2009-11-04T16:33:51Z 2009-11-04T16:33:51Z Sorry, it was a while since I did this. I've expanded my answer a bit. The key is to create an Aggregate target to add the sub-projects to. http://stackoverflow.com/questions/1643197/what-is-this-c-technique-for-adding-types-to-a-class-called Comment by Charles Anderson on What is this C++ technique for adding types to a class called? Charles Anderson 2009-10-29T16:30:17Z 2009-10-29T16:30:17Z I refer you to the comment // Define derived types pmfn and pmd. and lines such as ATestpm.*pmd = 1; which suggest that 'pmd' has been added to the class Testpm. These are what prompted my question, and the way I worded it. Looking at the code now, and with the benefit of the answers provided so far, I can see that pmd and pmfn are being defined as pointers to members inside Testpm. It's the fact that they're pointers into a class rather than an object, and the way they can be accessed from Testpm objects, that's confusing me, as I don't recall ever seeing this before. http://stackoverflow.com/questions/1613901/to-put-the-output-of-a-server-side-script-into-an-html-file-should-you-use-incl Comment by Charles Anderson on To put the output of a server side script into an HTML file, should you use #include or #exec? Charles Anderson 2009-10-24T13:29:04Z 2009-10-24T13:29:04Z They look equally easy to use. I am interested in whether they are equivalent, or if one has some unexpected side effect (such as inefficiency). http://stackoverflow.com/questions/1518979/cvs-commands-have-stopped-working-in-macos-x-terminal/1518995#1518995 Comment by Charles Anderson on CVS commands have stopped working in MacOS X Terminal Charles Anderson 2009-10-05T09:54:06Z 2009-10-05T09:54:06Z Okay, I don't set up $CVSROOT, but I never have and nor has my colleague, and yet he can still use the 'cvs' command, and I used to be able to. http://stackoverflow.com/questions/1380219/how-to-force-the-build-to-be-out-of-date-when-a-text-file-is-modified/1393305#1393305 Comment by Charles Anderson on How to force the build to be out of date, when a text file is modified? Charles Anderson 2009-10-02T15:24:15Z 2009-10-02T15:24:15Z Sounds like Visual Studio is now working the way you want it, but your batch file is causing the text file to be modified, so VS thinks it's immediately out of date again. Could you alter the batch file to copy the text file into version.bat, and then delete this copy at the end? That way version.txt itself won't be affected. http://stackoverflow.com/questions/1380219/how-to-force-the-build-to-be-out-of-date-when-a-text-file-is-modified/1393305#1393305 Comment by Charles Anderson on How to force the build to be out of date, when a text file is modified? Charles Anderson 2009-09-10T09:08:18Z 2009-09-10T09:08:18Z Hmm, same for me. Sorry about that. I was able to fix it, though, by specifying the .txt file as the output file. Try that? http://stackoverflow.com/questions/1335439/urllib-urlopen-doesnt-work-with-a-url-that-a-browser-accepts/1335634#1335634 Comment by Charles Anderson on urllib.urlopen() doesn't work with a URL that a browser accepts Charles Anderson 2009-08-27T10:59:49Z 2009-08-27T10:59:49Z Changing the user agent fixed it, like you said. TVM. http://stackoverflow.com/questions/1335439/urllib-urlopen-doesnt-work-with-a-url-that-a-browser-accepts Comment by Charles Anderson on urllib.urlopen() doesn't work with a URL that a browser accepts Charles Anderson 2009-08-26T16:35:50Z 2009-08-26T16:35:50Z I was just trying to learn how urllib works. As a first exercise I thought I'd write a script to examine this page to see what the latest version of TortoiseHg was. Looks like I should have picked some other page, and left this one for the second exercise. http://stackoverflow.com/questions/1310734/use-of-edit-selecttolastgoback-in-visual-studio/1310747#1310747 Comment by Charles Anderson on Use of Edit.SelectToLastGoBack in Visual Studio Charles Anderson 2009-08-24T08:00:35Z 2009-08-24T08:00:35Z Ah, jump points! I see. And you can also set a jump point using the Find command, or Page Up/Page Down. Now I just need to remember to try using this command. http://stackoverflow.com/questions/253018/how-to-configure-the-import-path-in-visual-studio-ironpython-projects Comment by Charles Anderson on How to configure the import path in Visual Studio IronPython projects Charles Anderson 2009-07-29T15:51:49Z 2009-07-29T15:51:49Z I've done very little with IronPython for a while now. (It's on a long list of projects I'd like to find some time for one day.) Which version of IronPythonStudio do you mean? http://stackoverflow.com/questions/919897/how-to-find-a-thread-id-in-python/919928#919928 Comment by Charles Anderson on How to find a thread id in Python Charles Anderson 2009-05-28T09:29:21Z 2009-05-28T09:29:21Z Well, that didn't turn out like I expected. 'threading.current_thread().name' gives me the unique information I needed. Thanks again. http://stackoverflow.com/questions/919897/how-to-find-a-thread-id-in-python/919928#919928 Comment by Charles Anderson on How to find a thread id in Python Charles Anderson 2009-05-28T09:28:12Z 2009-05-28T09:28:12Z import threading threading.current_thread().name does just what I need. Thanks. http://stackoverflow.com/questions/868510/problem-using-py2app-with-the-lxml-package Comment by Charles Anderson on Problem using py2app with the lxml package Charles Anderson 2009-05-15T13:34:49Z 2009-05-15T13:34:49Z Yes, it's there. http://stackoverflow.com/questions/868510/problem-using-py2app-with-the-lxml-package/868549#868549 Comment by Charles Anderson on Problem using py2app with the lxml package Charles Anderson 2009-05-15T13:33:30Z 2009-05-15T13:33:30Z I did try that but, as Luper points out, it's not a package. http://stackoverflow.com/questions/323424/py2exe-fails-to-generate-an-executable/540508#540508 Comment by Charles Anderson on py2exe fails to generate an executable Charles Anderson 2009-03-30T09:58:45Z 2009-03-30T09:58:45Z Before you think of marking this response down, try translating it. You'll find that the author apologises for their poor English, and is just trying to get an answer like the rest of us.