-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(MapWindow): unicode foes in read_into_memory() used by gitpython TCs #30
Conversation
@Byron please delay the release, to include this fix (and maching code from gitpython project). |
Changes Unknown when pulling 1bb6ff0 on ankostis:win_mmap into * on gitpython-developers:master*. |
Changes Unknown when pulling 91814e6 on ankostis:win_mmap into * on gitpython-developers:master*. |
1 similar comment
Changes Unknown when pulling 91814e6 on ankostis:win_mmap into * on gitpython-developers:master*. |
But is not ready yet... |
Drop Windows only codepath bypassing memory-mapping due to some leaks in the past. Now Appveyor proves everything run ok. Additionally, this codepath had unicode problems on PY3. So deleting it, fixes 2 TCs in gitpython: + TestRepo.test_file_handle_leaks() + TestObjDbPerformance.test_random_access() See gitpython-developers/GitPython#525
Changes Unknown when pulling b2eafcc on ankostis:win_mmap into * on gitpython-developers:master*. |
Now 2 more TCs pass in Windows: + TestRepo.test_file_handle_leaks() + TestObjDbPerformance.test_random_access() See gitpython-developers/smmap#30
It is ok now. |
Looks good! Thank you. |
Released via v2.0.1. |
Drop Windows only codepath bypassing memory-mapping due to some leaks in
the past.
Now Appveyor proves everything run ok.
Additionally, this codepath had unicode problems on PY3. So deleting it,
fixes 2 TCs in gitpython:
See gitpython-developers/GitPython#525