Brenton Partridge
Brenton Partridge
If DjangoDebugMiddleware is installed, calling `cursor.execute(b)` where b is a `bytes` object causes the recording (and thus the entire database call) to throw a TypeError due to https://github.com/graphql-python/graphene-django/blob/775644b5369bdc5fbb45d3535ae391a069ebf9d4/graphene_django/debug/sql/tracking.py#L126 : ```...
In https://github.com/farhan0581/django-admin-autocomplete-filter/blob/master/admin_auto_filters/filters.py#L53 we attempt to call `.get_queryset()` on the descriptor of the field. For foreign keys this works fine, but for ManyToManyDescriptor (which is present if you're referencing a ManyToManyField),...
Looking at: https://github.com/saxix/django-concurrency/blob/ff8eecf9198cefba9ad411371efe1fc30d796d3c/src/concurrency/fields.py#L260-L276 It appears that even if you're using a TriggerVersionField, the version is still incremented on the Python side on save. Wouldn't this cause an UPDATE, triggering the...
This gem is absolutely no longer needed, since Rails 4 has concerns now, but if it's still hanging out in your Gemfile, it'll be the culprit that breaks your entire...
Fresh install from yesterday, after restart of editor. A version of this seems (same top few stack frames) seems to happen whenever I open the ContextBuddy window, and no contents...
[Low priority feature contribution] Since we're incorporating sky noise in the model for the Inference project, it's useful to expose in `tractor.Image` instances the calculations described in http://data.sdss3.org/datamodel/files/BOSS_PHOTOOBJ/frames/RERUN/RUN/CAMCOL/frame.html : ```...
As I mentioned in the Inference group conference call, for debugging/paper purposes I've duplicated [the SDSS's false-color image generation pipeline](http://www.sdss3.org/svn/repo/photoop/trunk/pro/image/sdss_frame_jpg.pro) in Python. It can create images based on either a...
First off, this is incredible work. Patching CEF is not for the faint of heart - kudos! I wonder if you could try using something like https://github.com/mbebenita/Broadway or https://github.com/gliese1337/h264decoder to...
For instance, if I run a script twice to integrate with an in-house database, and it backfills the same event, will it count as two events with the same timestamp,...