You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While I was working on #207, I noticed that the decompressor class allows passing a custom dictionary, but the functionality is not working because lib.BrotliDecoderSetCustomDictionary was dropped since v1.0.9.0.
AttributeError: cffi library '_brotlicffi' has no function, constant or global variable named 'BrotliDecoderSetCustomDictionary'. Did you mean: 'BrotliDecoderAttachDictionary'?
It may be possible to use BrotliDecoderAttachDictionary instead of BrotliDecoderSetCustomDictionary.
This functionality has been broken for a few releases, so I hope it doesn't block releasing v1.2.0.0.
While I was working on #207, I noticed that the decompressor class allows passing a custom dictionary, but the functionality is not working because
lib.BrotliDecoderSetCustomDictionarywas dropped since v1.0.9.0.brotlicffi/src/brotlicffi/_api.py
Lines 369 to 376 in 75ac969
AttributeError: cffi library '_brotlicffi' has no function, constant or global variable named 'BrotliDecoderSetCustomDictionary'. Did you mean: 'BrotliDecoderAttachDictionary'?It may be possible to use
BrotliDecoderAttachDictionaryinstead ofBrotliDecoderSetCustomDictionary.This functionality has been broken for a few releases, so I hope it doesn't block releasing v1.2.0.0.