Merge pull request #2083 from justvanrossum/fix-FFF-typo
[varLib] Small bugfix: test for 0xFFFF, not 0xFFF
This commit is contained in:
commit
b1cb5ce1e5
@ -68,7 +68,7 @@ class OnlineVarStoreBuilder(object):
|
||||
self._outer = varDataIdx
|
||||
self._data = self._store.VarData[varDataIdx]
|
||||
self._cache = self._varDataCaches[key]
|
||||
if len(self._data.Item) == 0xFFF:
|
||||
if len(self._data.Item) == 0xFFFF:
|
||||
# This is full. Need new one.
|
||||
varDataIdx = None
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user