Caleb Hattingh
Caleb Hattingh
> Unrelated: at startup, I get the following message: Very possible. I haven't personally used vim-conda in a very long time. I will still merge PRs though so if you...
Thank you, I merged the PR and sent you an invite to be a collaborator on this project. Can this issue be closed now?
I suggested same to @ubaldot in the other issue. He is a collaborator on this project and I've encouraged him to add at reference in the README. Higher up is...
I'm looking at the example here: https://github.com/lancedb/tantivy-object-store/blob/main/examples/index_wiki_local.rs ```rust let dir = new_object_store_directory( Arc::new(LocalFileSystem::new()), dir.path().to_str().unwrap(), None, 0, None, None, ) .unwrap(); let index_using_object_store = tantivy::Index::create(dir, schema.clone(), IndexSettings::default()).unwrap(); let mut writer =...
Yes it's odd isn't it? I already noticed this quite a while ago. Check this out: ```python import gc import asyncio async def blah(): for i in range(20): print(i) await...
Ah interesting. I should probably make the change to assign the result to something anyway, because you never know if a future version of python becomes more aggressive to remove...
Yes ofc, but I hate needing to do that 😄
Also, it's plausible in the general case that `_` might get used for something else in the same scope. Maybe not this project, but as a general solution. So `_`...
@alexpovel I wrote that now old documentation. You are correct that `f is done` is never printed, and this was my error. Since I made the error, I would like...
The error was in my asyncio-tutorial PR which never got merged and is now closed (so there are no docs in main branch to fix here). I don't know who...