dg icon indicating copy to clipboard operation
dg copied to clipboard

A programming language for the CPython VM.

Results 16 dg issues
Sort by recently updated
recently updated
newest added

This seems like this is a very hard transition. They have changed the signature of `types.CodeType`, adding an extra positional argument called `posonlyargcount`. Accounting for this is easy, but they...

A jupyter kernel would be brilliant to have.

`break!` seems to be broken. Executing the example in the REPL leads to this: ``` >>> ok = for x in range 10 => ... if x == 5 =>...

Idea: follow Elm's lead and use `>>` and `>>` and `

Besides dg itself, I cannot search any in github, maybe a dglang tag should be created?

I write this: ``` a_list = [ 1, 2 ] a_tuple = ( 1, 2 ) a_dict = { ("a", 1), ("b", 2) } print a_list print a_tuple print a_dict...

There is a misguide in documentation: ![image](https://user-images.githubusercontent.com/6639874/28493072-3c24e31e-6f18-11e7-8bc0-294e0cb0b576.png) This function is obviously expected to return `4` (as the first line in the screenshot says) but the function name (`definitely_not_4`) is misleading:...

Added warning to the definition section in order to warn users in the first place, which would prevent issuing pyos/dg#38

I didn't build actual pages due to https://github.com/pyos/dg/issues/40

Hi there, some time ago I tried a bit at using the [python prompt toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) to enhance dg's repl experience. Indeed this projects makes it easy to have syntax highlighting,...