-
Updated
Aug 28, 2020 - CSS
ecc
Here are 159 public repositories matching this topic...
-
Updated
Sep 15, 2020 - Go
-
Updated
Oct 1, 2020 - Go
-
Updated
Sep 17, 2020 - Perl
-
Updated
Dec 2, 2018 - JavaScript
-
Updated
Jul 29, 2020 - PHP
-
Updated
Jul 15, 2020 - TypeScript
-
Updated
Feb 4, 2020 - Python
-
Updated
Jul 5, 2020 - Java
Hi! Looks promising. I tried it out as :
git clone https://github.com/cubbit/enigma.git
cd enigma
npm install
everything seem to go alright until the install runs node-gyp rebuild :
make: Entering directory `/var/www/html/valg/lib/enigma/build'
ACTION Prepare dependencies /var/www/html/valg/lib/enigma/dependencies
Error: Unsupported arch: ia32 - linux
at depen
-
Updated
Jul 2, 2020 - C
-
Updated
Oct 8, 2020 - Rust
-
Updated
Oct 9, 2020 - C
-
Updated
Jul 14, 2020 - PHP
-
Updated
Jun 14, 2018 - JavaScript
-
Updated
Jul 16, 2020 - TypeScript
-
Updated
Oct 3, 2020 - TypeScript
-
Updated
Oct 1, 2020 - TypeScript
-
Updated
Mar 9, 2020 - Go
-
Updated
Jun 23, 2020 - C
-
Updated
Jul 15, 2020 - Haskell
-
Updated
Sep 15, 2020 - C
-
Updated
Aug 9, 2020 - C
Improve this page
Add a description, image, and links to the ecc topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ecc topic, visit your repo's landing page and select "manage topics."
What is wrong?
Lots of places in the codebase do assertions like
isinstance(v, int)to check that something is an integer. Since python considersTrueandFalseto be integer types these checks won't disallow passing in aboolvalue.How can it be fixed
Probably need to add a single utility and make use of it everywhere that we do these checks.