Create your own GitHub profile
Join the platform over 40 million developers call home for hosting code, managing projects, and building their best software.
Sign up for free See pricing for teams and enterprises
Popular repositories
-
-
Forked from vikasuy/pyxl
A Python 3 extension for writing structured and reusable inline HTML.
-
-
1,060 contributions in the last year
Contribution activity
December 2019
Created a pull request in python/cpython that received 2 comments
The comment in ast_for_namedexpr shouldn't include if_stmt
Automerge-Triggered-By: @gvanrossum
+1
−3
•
2
comments
- Remove unnecessary names in Simpy Grammar
- Refactor EXTRA macro and extract the line and col info out of band
- Refactor rules for lambda definitions
- Move the definition of the inline functions to pegen.c
- Fix reference count in store_name()
- Create a function to raise syntax errors
- Refactor various atom rules
- Change metagrammar to allow for ternary operator
- Do not reuse the temporary directory for different tests
- Check for errors when calling _Py_asdl_seq_new
- Check for errors when calling PyUnicode_DecodeUTF8
- Documentation about helper functions and grammar syntax
- Refactor rules for with_stmt
- Make each alternative have its own curly-braced delimited block
- Refactorings for all small stmt rules (but assignment)
- Refactor grammar to use gather operator wherever possible
- [3.8] The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)
- [3.8] bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421)
- bpo-38673: dont switch to ps2 if the line starts with comment or whitespace
- bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR
- [3.5] bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418)
- [2.7] bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418)
- [3.6] bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418)
- [3.7] bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418)
- [3.8] bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418)
- bpo-38945: UU Encoding: Removed newline characters from uu encoding methods
- PEP-8101: Results
- PEP 611: Spellchecking, minor copyedit
- PEP 508: Add missing comma to grammar test code
- PEP 458: fix technical choices and remove ambiguity
- PEP 553: Add missing return None in except clause to pseudo-code
- PEP-0604: Simplify the "Objections and responses" section
- PEP 505: mention late-stage proposals for similar additions to Javascript
Created an issue in gvanrossum/pegen that received 1 comment
Can we support named variables inside groups?
Suppose we have this rule:
rule: foo [bar [baz]] { Thing(bar, baz) }
This currently doesn't work because the scope of the bar and baz variable is …
1
comment