InSync
InSync
# Steps to reproduce * Log in to SO * Go to a question to which you posted an answer * Try up/downvoting your own answer # What happened SO...
Implements subtask 2 of #535.
A module of mine has tens of (nested) element definitions, all have `.leave_whitespace()` called; it takes several seconds to run. It took me quite some time to realize that pyparsing...
According to [`CHANGES`](https://github.com/pyparsing/pyparsing/blob/2a1a8e8f4beee7fd120c3fdc1a48725b77e263c2/CHANGES#L5), these changes are the goals of the next minor version, 3.2.0: * [ ] Usage of pre-PEP8 names should raise `DeprecationWarning`s. * [ ] Remove support for...
Fixes #525. I'm not sure how to write tests though.
Recently I started using pyparsing for a project of mine. While doing debugging I noticed that the code is so deeply nested and thus extremely hard to read. Please consider...
Fixes #339.
[`.substr()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr) is deprecated. [`.substring()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring) should be used instead. Conveniently, [the differences](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring#the_difference_between_substring_and_substr) between these two methods have already been handled by the conditional checks. The following lines are affected: https://github.com/json5/json5/blob/de344f0619bda1465a6e25c76f1c0c3dda8108d9/lib/stringify.js#L50-L57
Fixes #19.
The value of a ``'s `for` attribute is supposed to be [an `id` of another element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label#attributes), not a `name`. Currently clicking on labels doesn't take me anywhere; after this fix,...