Richard Mitchell

Results 60 comments of Richard Mitchell

Can you be more specific about the errors you are getting?

I don't really understand the question. Can you give an example?

This introduces a backwards-incompatibility which will likely confuse most users who upgrade though.

Yes. It may make sense for your particular use-case, but it assumes the output of the slider is some kind of cumulative value and should not be default in my...

So you want to display a range of 10 - 100, but only allow users to select within a range of 18 - 100? That would make for pretty confusing...

Do you mean multiple selectors in one page, like in [this example](http://jqueryui.com/slider/#multiple-vertical)? If so, yes.

These functions are covered by this piece of code: ``` no_param_string_funcs = ["Upper", "Lower", "Capitalize", "Title", "SwapCase"] if operation in no_param_string_funcs: response["fragment"] = getattr(input, operation.lower())() ``` This takes the function...

@necaris It may be better to just add the `use_2to3` flag to the `setup.py` and let [distribute handle the rest as appropriate](http://pythonhosted.org/distribute/python3.html). Better still, hand-tune the Python 3 adaptations so...