-
Updated
Jul 6, 2022 - TypeScript
interpreter
Here are 4,517 public repositories matching this topic...
-
Updated
Apr 1, 2022 - C++
-
Updated
May 11, 2022
-
Updated
Jul 2, 2022 - C
Given the invalid command
let x/x
bash rightfully complains:
$ let x/x
bash: let: x/x: division by 0 (error token is "x")
but gosh panics:
$ go run cmd/gosh/main.go
$ let x/x
panic: runtime error: integer divide by zero
goroutine 1 [running]:
mvdan.cc/sh/v3/expand.binArit(0x111540?, 0x589de0?, 0xc000122f28?)
/home/dank/src/sh/expand/arith.go:173 +0x245
mv
-
Updated
Jul 4, 2022 - Red
-
Updated
Sep 18, 2021 - C
-
Updated
Apr 26, 2022 - TypeScript
-
Updated
Mar 10, 2021 - Go
-
Updated
Mar 14, 2022 - C
Describe the bug
The expression /=/ does not get parsed as a regexp
To Reproduce
let myRegex = /=/;That throws this: "unexpected token '/=', primary expression at line 1, col 15"
Expected behavior
It should give me the regu
-
Updated
Jul 26, 2021 - Go
Loom: JNI support
Depends on eclipse-openj9/openj9#15172
Implement IsVirtualThread
See https://download.java.net/java/early_access/jdk19/docs/specs/jni/index.html
-
Updated
Jul 7, 2022 - C
I have an idea for a new feature for jQuery Terminal
I think that to be correct the LICENSE file should include copyright notes from all projects that are included. And a copy of all licenses is inside that file.
All libraries from at the beginning of the jquery.terminal-src.js file should be looked up and
-
Updated
May 25, 2022 - Vim script
Scenario:
I have a project, with build tools of cmake, when I try to run it with cling. It prompts some headers are not included.
So I was wondering if there is a way to make use of the cmake script to load the build environment into cling and run directly?
Appreciate the great work!
-
Updated
Jul 4, 2022 - C
-
Updated
Jul 7, 2022 - Python
Describe the bug
The analytical integral of the RooPoisson is implemented wrongly for the case where the boundaries are 0 < a < 1e30 and b >= 1e30.
Expected behavior
The integral should be correct.
To Reproduce
The wrong integral can be reproduced with this code snippet.
void testPoissonIntegral() {
const double mu = 100;
const double inf = std::-
Updated
Jun 17, 2022 - C
-
Updated
Jun 12, 2022 - Go
-
Updated
Mar 24, 2022 - Go
Add a .clang-format
This is a config file for clang-format, a tool that is already used by many editors and adopted by many projects to format the code and ensure that the style is consistent.
It could even be used as a git hook or in the CI/CD workflow to ensure that new patches respect the coding style.
A config can derive from other preexisting configs (like Google's, LLVM's or Mozilla's) so it's not a big eff
-
Updated
Jun 29, 2022 - Go
Improve this page
Add a description, image, and links to the interpreter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the interpreter topic, visit your repo's landing page and select "manage topics."
Feature
Many existing test cases check that
pickle.dumpsandpickle.loadsof a given type return the exact same value. Almost failed pickle test in RustPython, lack__reduce__method.arrayiterator.__reduce__(test_array::test_iterator_pickle)filter.__reduce__(test_builtin::test_filter_pickle) — #3732map.__reduce__(test_builtin::test_map_pickle) — #3734