master
Name already in use
Commits on Feb 17, 2023
Commits on Jan 24, 2023
Commits on Nov 28, 2022
Commits on Oct 27, 2022
-
-
-
-
Revert to requiring Python import callbacks to return bytes rather th…
…an string, and add version string to python module
-
-
Commits on Oct 26, 2022
Commits on Oct 25, 2022
-
-
-
Do not assume that std.reverse accepts a string, this is not true for…
… the Go builtin implementation
-
Revert "Fix the following compiler (clang 11) warning"
This reverts commit 56a8038.
-
Revert "Fix the following compiler (clang 11) warning"
This reverts commit f3ab8a7.
-
Revert "abort() instead of brake for json::value_t::binary case as it…
… should never happen" This reverts commit 9ba22f7.
-
I was confused by this for a minute until I realized it meant .foo and not some magic member. Please correct me if I'm wrong though
😄 -
Fix the following compiler (clang 11) warning
python/_jsonnet.c:150:19: warning: comparison of integers of different signs: 'int' and 'const size_t' (aka 'const unsigned long') [-Wsign-compare] for (i = 0; i < ctx->argc; ++i) { ~ ^ ~~~~~~~~~ Change type of index loop (i) to Py_ssize_t like in all other places in the code. Cast ctx->argc to Py_ssize_t to make them the same type Useful link https://www.python.org/dev/peps/pep-0353 -
Fix the following compiler (clang 11) warning
vm.cpp:1585:19: warning: enumeration value 'binary' not handled in switch [-Wswitch] switch (v.type()) { ^ Show explicitly it's not just forgotten to handle the json::value_t::binary case -
Add `importbin`. Like `importstr` but returns an array of numbers (integers 0-255). Note! This changes the `JsonnetImportCallback` function type signature, and requires modification to existing code that uses custom import callbacks. The included python bindings have been updated.
Commits on Oct 19, 2022
Commits on Sep 28, 2022
Commits on Aug 30, 2022
Commits on Aug 18, 2022
Commits on Jul 22, 2022
-
Use printf rather than 'echo -n'
This is more POSIX compliant, handy for MacOS users.