Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[HTCondor-users] matchmaking with python bindings changes behavior depending on the imports
- Date: Thu, 15 Nov 2018 15:35:56 -0500
- From: Jose Caballero <jcaballero.hep@xxxxxxxxx>
- Subject: [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