Levi Cameron

Results 25 comments of Levi Cameron

@rbarrois I have been working on getting your branch 4046c55 working with the current `master`, however have a design question: For me, the main desire for an automatic generator is...

To clarify: this is when determining what fields to auto generate; if you specifically include a field in the list of fields to generate then it would still use fuzzy/faker...

I have essentially completed it at https://github.com/levic/factory_boy/commits/wip/auto_factory I wasn't planning to do a pull request until I've used it for a week in a production project in case the test...

> What exactly are you trying to do One use case: I was trying to use [type annotations](https://www.caktusgroup.com/blog/2017/02/22/python-type-annotations/) for functions that passed around `_Microphone` and `_Speaker` objects but I couldn't...

For reference, I've been using this: ```python __all__ = ( '_Microphone', '_Player', '_Recorder', '_Speaker', 'all_microphones', 'all_speakers', 'default_microphone', 'default_speaker', 'get_microphone', 'get_speaker', ) ``` (those are the classes that appears to be...

I believe this is a duplicate of #544

For reference: Django's [`validate_unique()`](https://github.com/django/django/blob/stable/1.11.x/django/db/models/base.py#L1027) traverses the MRO and [appends parent indexes](https://github.com/django/django/blob/stable/1.11.x/django/db/models/base.py#L1056) to the list of unique indexes to check. In 2.2 (when django added native support for partial indexes), [`validate_unique()`](https://github.com/django/django/blob/stable/2.2.x/django/db/models/base.py#L973)...

On master using flipleft animation, I can see it simulator, simulator(6.0), simulator(6.1) and iphone5(6.1) -- in the simulator it's a lot faster but the black screen flash is still there....

Calling code would now look like: ```python def test_element_as_parser(self): """ we can pass an Element as the extractor to parse_*() """ html = ''' Hello world! Hello mars! ''' #...

Looks like the underlying problem is with crypt3: https://github.com/sendanor/node-crypt3/pull/10 Edit: actually a library (nan) that crypt3 is dependent on