Skip to content
This repository has been archived by the owner on Jan 16, 2021. It is now read-only.

Pub parser bug in dictionaries #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Pub parser bug in dictionaries #53

wants to merge 1 commit into from

Conversation

till-varoquaux
Copy link
Contributor

This fixes a bug when parsing a pub dictionary with a key and no value.
The bug can be observed:

d = {f, g:4};
print (d); // ==> {f:null, g:4}

But:

x = 4;
d = {f, g:x};
print(d);// ==> {g:4}

@till-varoquaux till-varoquaux changed the title Pub bug Pub parser bug in dictionaries Sep 30, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant