Just poking around with some of the buildbot errors. The first test failure
was:
Traceback (most recent call last):
File "/private/tmp/sqlalchemy/test/sql/testtypes.py", line 193, in
testbinary
stream1 =self.get_module_stream('sqlalchemy.sql')
File "/private/tmp/sqlalchemy/test/sql/testtypes.py", line 212, in
get_module_stream
return file(f).read(59473)
IOError: [Errno 2] No such file or directory: './lib/sqlalchemy/sql\\.pyc'
Looking at the code I found line 210 suspicious:
f = re.sub('\.py$', '\.pyc', f)
It should be
f = re.sub('\.py$', '.pyc', f)
To wit:
>>> f = "sql.py"
>>> re.sub('\.py$', '\.pyc', f)
'sql\\.pyc'
>>> re.sub('\.py$', '.pyc', f)
'sql.pyc'
Skip
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sqlalchemy
-~----------~----~----~----~------~----~------~--~---