Victor Uriarte

Results 52 comments of Victor Uriarte

@audreyr I think you are referring `cmdclass` that i came across this morning on [`py.test` documentation.](https://pytest.org/latest/goodpractices.html#manual-integration) I think this [so question/answer](http://stackoverflow.com/a/1712544/5208670) gives a bit more information

Here's [another](https://bitbucket.org/hyllos/effectus-python/diff/appveyor.yml?diff2=fdb81dae7f95&at=default) project that switched over recently.

We used to install `conda` and used the same variables as you did, the [example](https://github.com/pythonnet/pythonnet/commit/a356dcc7740b28dbe631b6fdb11bdc83384298f6#diff-180360612c6b8c4ed830919bbb4dd459) actually still installed conda and created the appropriate environment we needed. In my project, we...

did you mean ```yaml matrix: - TOXENV: 3.3 PYTHON_VERSION: 3.3 - TOXENV: 3.4 PYTHON_VERSION: 3.4 - TOXENV: 3.5 PYTHON_VERSION: 3.5 ``` if so, you could use ```yaml matrix: - PYTHON_VERSION:...

would it be simpler to build the `token` during the lexing process and assign the row/col values then? then you are only yielding/refering 1 object instead of 4 related ones

I was going to change into that behavior in the near future. Unless there is any particular reason not to, I think it would be better to go ahead with...

Haven't forgotten about this. I'll merge it in after the 0.2.0 release.

They all seem to start with `/*!` correct? I made a similar note (in an upstream branch) with respect to Oracle's `hint comments` but didn't press the issue. I think...

not sure i understood what you meant. The example shows CREATE and SELECT examples. The changes I have in mind would identify the token and categorize it as a `comment.code`...

Agreed!. I placed the [`hint` tokens](https://github.com/andialbrecht/sqlparse/blob/master/sqlparse/keywords.py#L22-L23) in an earlier commit is I'm familiar with its existance. Turns out there is a more obscure hint type; [`--+ ... \n` is valid...