Sergei Lebedev
Sergei Lebedev
I know the example bellow doesn't make much sense, but anyway: ``` erlang -module(test). -record(test, {}). -compile({parse_transform, exprecs}). -export_records([test]). ``` ... results in the following error with the latest version...
I was thinking -- maybe we can use metadata notation for defining `:compiled` templates and snippets? this will allow creating private templates, ex: ``` clojure (deftemplate ^{:compiled true :private true}...
it seems that most production deployments are either 2.4 -- CentOS 5, or 2.6 -- CentOS 6 or Debian Stable. ### Why? 1. Abstract Base Classes from `collections` -- without...
Hello, I've got the following failure wen running `runtests.py` -- is it an expected issue? ``` Code/brownie » python runtests.py [100%] 495 of 495 ETA: 00:00:00 brownie.tests.terminal.progress.TestDataTransferSpeedWidget.update ──────────────────────────────────────────────────────────────────────────────── Traceback (most...
Embedded CPython builds could have more than 2**16 symbols. This commit changes the iteration counter type in the aforementioned methods to Elf*Word.
This is useful for running PyFlame from Jupyter Notebook, where a cell could be isolated to a separate thread prior to profiling. See also #163.
Prior to this PR PyFlame did not implement a way for the running application to signal that profiling should be stopped. This is useful e.g. when profiling from a Jupyter...
Currently `withName` produces error messages like ``` Baz is not a member of Enum (Bar, Boo) ``` where `Enum` is used regardless of the actual enum class/trait name. Is it...
Is there a reason for not using labelled arguments for JS APIs? Some of the wrapped methods take an impressive number of parameters, e.g. `canvasRenderingContext2d` ``` ocaml ctx##fillRect (node##.x -....
This commit ensures that G[A, B, C,] is split in a similar way to [A, B, C,] i.e. G[ A, B, C, ] instead of G[A, B, C,] assuming A,...