[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] matchmaking with python bindings changes behavior depending on the imports



Hi,
is this behavior expected?



>>> import classad
>>> c = classad.ClassAd()
>>> c['foo'] = 5
>>> req = classad.ClassAd()
>>> req['Requirements'] = classad.ExprTree('foo > 0')
>>> c.matches(req)
False

>>> import htcondor
>>> c.matches(req)
True



The test was done using version 8.7.9
Cheers,
Jose