Juha Jeronen

Results 73 issues of Juha Jeronen

This would be occasionally useful: ```python from itertools import repeat from unpythonic.syntax import macros, autotrunc # DOES NOT EXIST YET with autotrunc: a, b, c = repeat(None) ``` Concise, and...

enhancement
discussion

In short: in recent Pythons, **impossible, by design**. This is probably a good thing. In Python ≤ 3.6, as [discussed on stupidpythonideas](http://stupidpythonideas.blogspot.com/2015/12/how-lookup-works.html), there was `PyFrame_LocalsToFast` in the CPython C API,...

wontfix
discussion

Here's an attempt at #467, which see. Fixes #467

**Platform**: Linux Mint 17.2, based on Ubuntu 14.04 **Racket version**: 6.10.1 from [Racket PPA](https://launchpad.net/~plt/+archive/ubuntu/racket) **Issue description** At least to me it seems the Racket package _eli-tester_, that is included in...

release-management
platform:linux

For several years now, I have no longer had the resources to actively contribute to the codebase of `pyan`, as I have not needed the tool myself. Since there is...

help wanted
discussion

For completeness, the `call` and `callwith` functions should support the `Values` abstraction, for unpacking multiple and/or named return values into function arguments. The function composition utilities already support this. Instead...

enhancement

When parsing a WOS file that has content in an "Y1" field, using `wosfile.records_from`, the parser crashes: ``` Traceback (most recent call last): File "/home/.../myscript.py", line 185, in main() File...

Here's a PR for the client side of *Vector Storage*. - New setting *Science mode* (off by default). - When enabled, the ingestion process heuristically sanitizes the input text (to...

🟩 PR - Small

The incantation `python -c 'import foo; print(foo.__version__)'` is pretty useful for checking library versions. It would be useful to have this in `macropython`, too, but currently, it only supports files...

enhancement

[Python 3.8 added](https://docs.python.org/3/whatsnew/3.8.html#ast) the `end_lineno` and `end_col_offset` fields to AST nodes that have `lineno` and `col_offset`. Specs in the [official documentation](https://docs.python.org/3/library/ast.html#ast.AST.end_lineno). We should probably worry about these anywhere we handle...

enhancement