Srinivas Gorur-Shandilya

Results 72 issues of Srinivas Gorur-Shandilya

ideally, something like this: ```python # write something to local storage st.local_storage.a = 1 # reload the session, etc., # read it back a = st.local_storage.a ``` --- Community voting...

type:enhancement
area:utilities

example: ```python from pytypes import typechecked @typechecked def foo(a: int, *, c: str): for _ in range(a): print(c) foo(10,c="1") ``` leads to this: ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call...

If I decorate a class method with `@typechecked`, it works, but breaks autoreload, generating this error: ``` [autoreload of pytypes.typechecker failed: Traceback (most recent call last): File "/Users/srinivas/opt/anaconda3/lib/python3.8/site-packages/IPython/extensions/autoreload.py", line 245,...

this is what my function looks like: ``` @typechecked def my_func( a: int, b: str, ): ``` I (deliberately) call the function with an incorrect type using: ``` my_func(1,1) ```...

### Describe the feature you'd like an option to print out only the modules/functions that are missing docstrings ### Is your feature request related to a problem? no

enhancement
needs triage

- **Poetry version**: Poetry (version 1.4.1) - **Python version**: Python: 3.9.15 - **OS version and name**: macOS 13.2.1 - **pyproject.toml**: https://gist.github.com/sg-s/07ae0c878981d15b5c22d2adc7d74f3d - [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) stable Poetry...

kind/bug
status/triage

In document 1, if I have a link like this: ``` [wow so link](./document2.md) ``` clicking on that should open `document2.md` in the same window, like a browser. I think...

enhancement