2
votes
Python - String Literals
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.
…
1
vote
Does python optimize modules when they are imported multiple times?
The internal registry of imported modules is the sys.modules dictionary, which maps module names to module objects. You can look there to see all the modules that are currently importe …
1
vote
Why is fuse not using the class supplied in file_class
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 Fuse.MethodProxy._ …
8
votes
How to convert a date in python?
The other two answers are fine, but if you actually want the date for something else, you can use the datetime module:
from datetime import datetime
d = datetime.strpti …
5
votes
What’s the simplest way to access mssql with python or ironpython?
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:
import clr
clr.AddRe …
1
vote
Setting up paths: .pth or sys.path
I just tried putting a .pth file in directory a with a.py, pointing at directory b, and module a couldn't import the module in …
4
votes
Python “is” operator behaves unexpectedly with integers
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 val …
3
votes
Is there a good NumPy clone for Jython?
I can't find anything that's a clone of numpy, but there's a long list of Java numerics packages here - these should all be usable fr …
3
votes
string.split(text) or text.split() what’s the diference?
An extra note: str is the string type, as S.Lott points out above. That means that these two forms:
'a b c'.split()
str.split('a b c')
# both return ['a', 'b', 'c']
…
3
votes
How to detect that Python code is being executed through the debugger?
Python debuggers (as well as profilers and coverage tools) use the sys.settrace function (in the sys module) to register a callback that gets called when interesting event …
2
votes
Notification Library for Windows
Are you developing the application in Python? It depends what GUI toolkit you're using.
If you're using wxPython, you could try …
3
votes
Best Python templating library to facilitate code generation.
If you're doing code generation, you might find Cog useful - it's specifically for code generation, rather than being a generally app …
2
votes
Why does this pyd file not import on some computers?
You could try something like Process Monitor, to watch what DLLs it tries to load. I'd assume that one of …
