Skip to content

Instantly share code, notes, and snippets.

View dcreager's full-sized avatar

Douglas Creager dcreager

View GitHub Profile
@dcreager
dcreager / path-in-comment.md
Created January 24, 2025 02:27
mdtest file path bikeshedding
# path=mod.pyi
def get_foo() -> Foo: ...
class Foo: ...
@dcreager
dcreager / eager-scopes.py
Created February 11, 2025 19:56
Nested eager/lazy scopes in Python
x = [1]
a = [a for a in x]
print("eager", a) # eager [1]
x = [2]
print("eager", a) # eager [1]
x = [1]
def f():
return list(x)
print("lazy", f()) # lazy [1]