Gordon Wrigley

Results 74 comments of Gordon Wrigley

pdb was a good suggestion, I should have thought of that unfortunately it doesn't help much, it just disappears here https://github.com/python/cpython/blob/db455296be5f792b8c12b7cd7f3962b52e4f44ee/Lib/importlib/__init__.py#L127 the last thing I see in pdb is _gcd_import...

I started in magic.py and stepped until it exited

also often I need to uninstall and reinstall python-magic-bin, this tends to be necessary around other version updates

I haven't had time to look into that part of it, but it seems like it's critical that python-magic-bin is installed after python-magic, so if python-magic gets updated it becomes...

I'm going to put in a vote for different types of splitting get different indents or put another way a multiline statement in a list like should have an extra...

there's a similar issue with inline conditionals where ``` data = { "topic_type": self.fields["topic_type"].initial, "target_type": self.fields["target_type"].initial, "override_context": self.fields["override_context"].initial if "override_context" in self.fields else None, } ``` gets reformatted as ```...

I didn't realize this hadn't been merged, @adamchainz could you sort out the HISTORY.rst conflict? @dkgitdev That shouldn't be happening and this won't fix it. It suggests that either you...

@lutzroeder @anyazz What needs to be done to advance this to a point where it can be merged?

I have 2.8.1 I've also just run into this. The bit about this that really blows my mind is that "2018-22-11" is an error, and yet the value of "2018-12-11"...

For S3Boto3Storage we are currently wraping it with this ``` class BaseS3Storage(S3Boto3Storage): def _clean_name(self, name): name = str(name) # convert any pathlib stuff to strings return super()._clean_name(name) ``` to deal...