5j9

Results 27 comments of 5j9

The problem is that if the member is part of another library's API, e.g. [`self.maxDiff = None`](https://docs.python.org/3.4/library/unittest.html#unittest.TestCase.maxDiff) in unittest module, then it leads to errors that are out of the...

I'm curious to know how pylint detects constants. Note that if a constant literal (`10`) is assigned to a variable (`delta`), that's not enough evidence to call that variable a...

Ah, in that case we do not agree on what is considered a constant. I've always thought of them having a constant value, i.e. I never use UPPER_CASE for a...

Well done tracking this one down. This is what they call "Reverse pipe trick"[1] and it is only valid in input wikitext. How Mediawiki will expands the `[[|alt]]` syntax depends...

Interesting! Are trying to convert wikitext back to html? because if that's the case it will be a lot easier if you could somehow use the mediawiki's parser directly. To...

This looks to be a duplicate of #180. You can either close the browser completely (note that edge sometimes leaves some background processes named `msedge.exe` that need to be killed)...

I ended up merging this pull request in a02b9e96e . I decided that false positives are tolerable and can easily be ignored, but the given `#if` example is much worse...

I'm currently only using python 3.5 with ST3 as my editor on a win10 64bit machine. I made the following changes to make SublimeREPL open Python REPL automatically whenever it...

Menu bar > `Options` > `Zoom In/Out`?

Thanks for the feedback! I actually had something like this in mind when I started [_config.py](https://github.com/5j9/wikitextparser/blob/4bfc46e83fb411a357a58bdc718b077b9115f4ca/wikitextparser/_config.py ), but never found the time to actually go through with it. It is...