zed

Results 29 comments of zed

The patch from this issue may help: https://github.com/SilverpointDev/sptbxlib/issues/107 ``` TTBCustomAccObject = class(TTBBaseAccObject) ... class var AccessibilityFinalized: Boolean; end; finalization DisconnectAccObjects; if NeedToUninitialize then CoUninitialize; if LastAccObject = nil then DeleteCriticalSection(LastAccObjectCritSect)...

Unfortunately, official leveldb not support Windows :(

Default encoding in Linux is UTF-8 and this is unicode and there is no problem, but in Window it is Win1251, for example. So, from C code you must make...

Can you give me precompiled *.pyd for x86 Python?

I can install Python x64 for testing in this case. Because installing Visual Studio and compile lib from sources is more difficult. So, give me your pyd for x64, please?

Test code: ``` python #!/usr/bin/python # -*- coding: utf-8 -*- import codecs import leveldb db_path_uni = u'c:\\tmp\\中文-español' with codecs.open('leveldb_uni_test.txt', 'w', encoding='utf-8') as f: f.write(db_path_uni) db = leveldb.LevelDB(db_path_uni) db.Put('hello', 'hello world')...

I can't reproduce it at the moment, but I also get this error when installing GR32 from scratch on my laptop. IDE makes some changes in the dpr file and...

These variables must also be `THandle` types: - `file_, map: dword;` here https://github.com/synopse/mORMot/blob/master/PasZip.pas#L249 - `Handle: integer;` here https://github.com/synopse/mORMot/blob/master/PasZip.pas#L298 P.S. Also, there may be errors related to the fact that the...