Will Bond
Will Bond
In addition to #8, we should encourage developers to try installing a package via `Add Repository` before adding it to the main channel.
Since Sublime Text 3.0, we've shipped a `Data/Lib/` folder that contains Python-version-sepcific folders that are automatically added to the `sys.path`. The intention of adding these was to set the environment...
Since dependencies need a new python_version field in the JSON schemas, the https://packagecontrol.io code will need to be updated also. Here are a few relevant places: - https://github.com/wbond/packagecontrol.io/blob/master/setup/sql/up.sql#L101-L109 - https://github.com/wbond/packagecontrol.io/tree/master/setup/sql/migrations...
All downloaders should handle HTTP codes 301, 302, 303 and 307.
I just wrote https://github.com/wbond/unittest_data for data-provider driven tests. While not 100% different from the current approach since it still generates test methods, it may produce code that is easier to...
The description of this repo says it only work with Sublime Text 2, but the package info indicates it works with ST3 also.
The description of this repo says it only work with Sublime Text 2, but the package info indicates it works with ST3 also.
With a recent rewrite of Clojure by @mitranim, I wanted to make sure we are properly scoping the built-ins. The rewrite handled part of #996, but I believe we need...
From #1356, originally reported by @anticultist ```c++ // function is recognized as a golobal function not a class function template HRESULT A::c() { return S_OK; } ```
On line 299, the explicit call to urlencode() for excluded parameters is double-encoding since http_build_query() also url encodes.