Skip to content

Commit 4aad6b7

Browse files
Add Audiences to OptimizelyConfig and expose in OptimizelyExperiment (#342)
* [OASIS-7800] Updated OptimizelyConfig with attributes and events * [OASIS-7812] - Add Audiences to OptimizelyConfig to expose to users and additional test cases for new implementation
1 parent 4935717 commit 4aad6b7

File tree

5 files changed

+892
-99
lines changed

5 files changed

+892
-99
lines changed

optimizely/helpers/condition.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class ConditionOperatorTypes(object):
2626
AND = 'and'
2727
OR = 'or'
2828
NOT = 'not'
29+
operators = [AND, OR, NOT]
2930

3031

3132
class ConditionMatchTypes(object):

optimizely/lib/pymmh3.py

+32-32
Original file line numberDiff line numberDiff line change
@@ -127,25 +127,25 @@ def fmix(k):
127127
for block_start in xrange(0, nblocks * 8, 8):
128128
# ??? big endian?
129129
k1 = (
130-
key[2 * block_start + 7] << 56
131-
| key[2 * block_start + 6] << 48
132-
| key[2 * block_start + 5] << 40
133-
| key[2 * block_start + 4] << 32
134-
| key[2 * block_start + 3] << 24
135-
| key[2 * block_start + 2] << 16
136-
| key[2 * block_start + 1] << 8
137-
| key[2 * block_start + 0]
130+
key[2 * block_start + 7] << 56 |
131+
key[2 * block_start + 6] << 48 |
132+
key[2 * block_start + 5] << 40 |
133+
key[2 * block_start + 4] << 32 |
134+
key[2 * block_start + 3] << 24 |
135+
key[2 * block_start + 2] << 16 |
136+
key[2 * block_start + 1] << 8 |
137+
key[2 * block_start + 0]
138138
)
139139

140140
k2 = (
141-
key[2 * block_start + 15] << 56
142-
| key[2 * block_start + 14] << 48
143-
| key[2 * block_start + 13] << 40
144-
| key[2 * block_start + 12] << 32
145-
| key[2 * block_start + 11] << 24
146-
| key[2 * block_start + 10] << 16
147-
| key[2 * block_start + 9] << 8
148-
| key[2 * block_start + 8]
141+
key[2 * block_start + 15] << 56 |
142+
key[2 * block_start + 14] << 48 |
143+
key[2 * block_start + 13] << 40 |
144+
key[2 * block_start + 12] << 32 |
145+
key[2 * block_start + 11] << 24 |
146+
key[2 * block_start + 10] << 16 |
147+
key[2 * block_start + 9] << 8 |
148+
key[2 * block_start + 8]
149149
)
150150

151151
k1 = (c1 * k1) & 0xFFFFFFFFFFFFFFFF
@@ -258,31 +258,31 @@ def fmix(h):
258258
# body
259259
for block_start in xrange(0, nblocks * 16, 16):
260260
k1 = (
261-
key[block_start + 3] << 24
262-
| key[block_start + 2] << 16
263-
| key[block_start + 1] << 8
264-
| key[block_start + 0]
261+
key[block_start + 3] << 24 |
262+
key[block_start + 2] << 16 |
263+
key[block_start + 1] << 8 |
264+
key[block_start + 0]
265265
)
266266

267267
k2 = (
268-
key[block_start + 7] << 24
269-
| key[block_start + 6] << 16
270-
| key[block_start + 5] << 8
271-
| key[block_start + 4]
268+
key[block_start + 7] << 24 |
269+
key[block_start + 6] << 16 |
270+
key[block_start + 5] << 8 |
271+
key[block_start + 4]
272272
)
273273

274274
k3 = (
275-
key[block_start + 11] << 24
276-
| key[block_start + 10] << 16
277-
| key[block_start + 9] << 8
278-
| key[block_start + 8]
275+
key[block_start + 11] << 24 |
276+
key[block_start + 10] << 16 |
277+
key[block_start + 9] << 8 |
278+
key[block_start + 8]
279279
)
280280

281281
k4 = (
282-
key[block_start + 15] << 24
283-
| key[block_start + 14] << 16
284-
| key[block_start + 13] << 8
285-
| key[block_start + 12]
282+
key[block_start + 15] << 24 |
283+
key[block_start + 14] << 16 |
284+
key[block_start + 13] << 8 |
285+
key[block_start + 12]
286286
)
287287

288288
k1 = (c1 * k1) & 0xFFFFFFFF

0 commit comments

Comments
 (0)