Todd Wolfson
Todd Wolfson
> My suggestion, given the issues with floating point issues, is scale those number by 1000. That might work. Oooh, that's a great idea! I got so caught up in...
Unfortunately, that doesn't resolve the issue =/ At first I thought it was possibly my implementation but even moving the numbers to just ints or shifting the decimal continues to...
Ah, I didn't know `npm` ever had that available. I have submitted a PR, #4, to prevent further confusion to anyone in a similar situation to mine. As for names,...
- parrot - parakeet
Sublime Text doesn't allow for escape sequences. Instead it does the literal representation in the search field (i.e. a new line scrolls the search field/expands the height of the search...
Damn, is that something that could be fixed by moving to raw mode?
Ah, I think I missed that transition. I concur with your work to value assessment and maybe there's another solution
As a heads up, we took a different approach and made a `vcrpy`-based dynamic callback to use on HTTPretty in #224.
For the interim, I am working around this by using `mock.patch`: ``` python import mock @mock.patch('requests.packages.urllib3.filepost.choose_boundary') def test_abc(self, choose_boundary_mock): choose_boundary_mock.return_value = 'abcdef' # with cassette.play(... ```
I have a working solution for `requests==2.5.1`. However, I have run out of time to work on getting a backwards compatible version working. The solution for `requests==2.5.1` can be found...