d0df704d8a
added python.path vm arg to startup script fixed infinite loop in unwrap() when displaying sequences of sequences git-svn-id: http://google-refine.googlecode.com/svn/trunk@509 7d457c2a-affb-35e4-300a-418c747d4874
8 lines
238 B
Python
8 lines
238 B
Python
# This flexes PR#170 which is caused by a suspected JIT bug. Said bug for
|
|
# some reason breaks exception matching. There is now a workaround that seems
|
|
# to do the trick most of the time.
|
|
try:
|
|
int("foo")
|
|
except ValueError:
|
|
pass
|