Alex Hall

Results 200 issues of Alex Hall

Hi! I just came across this project, it looks very impressive! I thought I'd point out a couple of libraries I've written which could help make it even more powerful,...

travis-ci.org is not building any more.

When ic() doesn't work it just says: > ic| Error: Failed to access the underlying source code for analysis. Was ic() invoked in a REPL (e.g. from the command line),...

Example script: ```python from icecream import ic breakpoint() ic(len) ic(sum) ``` Stepping through the lines with `n`, everything works fine: ``` $ python script.py > script.py(3)() -> ic(len) (Pdb) n...

@gruns - I am sure I am in a very tiny minority, but I would be interested in a single-file `icecream.py`. My reason for wanting a single file is related...

Closes #32 Example: ```python from icecream import ic @ic def foo(x, y): return x + y a = 1 b = 2 foo(a, b) ``` ``` ic| called foo(1, 2)...

Closes #67 Under `single_file`, run `package.sh` to update `single_file_icecream.py`. Not sure if/how we'd want to automate this, e.g. with travis or git commit hooks, and I don't want to go...

Continuing our email discussion here so that others can comment... You're right, there isn't extra information, I was confused at first. But overall there is a lot of information in...

enhancement

I just wanted to share a project I thought you'd be interested in: https://futurecoder.io/ It's a free open source online interactive Python course where users run code and solve exercises....