Results 9 comments of Erik Elmore

Dynamic/computed returns can be achieved without adding a new feature by doing something like this: ```go type mockClient struct { mock.Mock } // Perfectly normal testify mock method implementation func...

I'm also seeing this with only stack_explorer and rescue plugins.

This also affects `ensure`, both with and without `rescue`: ![image](https://cloud.githubusercontent.com/assets/174661/13820455/ac9d608c-eb5a-11e5-88e5-da59a5e3a272.png) ![image](https://cloud.githubusercontent.com/assets/174661/13820653/8c7637ec-eb5b-11e5-91b1-30c98b8b7e71.png)

Possibly related? atom/atom#3442

I just found mockery and I like the idea, but I was having the same problem as the OP here. I Just posted about that in a [testify issue](https://github.com/stretchr/testify/issues/350#issuecomment-703792499). Posting...

This also doesn't seem to work with remote dev, at least on macos.

Are you sure it's 32 bits wide? I was given to believe it was 64. Been working on something like the following: ```python @lru_cache(maxsize=1000) def dn_to_uid(dn, max_bits=64, make_hash=hashlib.sha1): """ This...

Did more testing and found that the UID value must be an unsigned integer less than 31-bits wide. I'm guessing it has to be 31 bits unsigned because the value...

By the way, the authenticator process would sometimes get killed if we returned a value out of range. When that happens, it allows any user to connect unauthenticated.