File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,13 +47,13 @@ Documentation
4747 https://sqlparse.readthedocs.io/en/latest/
4848
4949Discussions
50- http ://groups.google.com/group /sqlparse
50+ https ://groups.google.com/forum/#!forum /sqlparse
5151
5252Issues/Bugs
5353 https://github.com/andialbrecht/sqlparse/issues
5454
5555Online Demo
56- http ://sqlformat.org
56+ https ://sqlformat.org/
5757
5858
5959python-sqlparse is licensed under the BSD license.
@@ -62,6 +62,6 @@ Parts of the code are based on pygments written by Georg Brandl and others.
6262pygments-Homepage: http://pygments.org/
6363
6464.. |buildstatus | image :: https://secure.travis-ci.org/andialbrecht/sqlparse.png?branch=master
65- .. _buildstatus : http ://travis-ci.org/#!/andialbrecht/sqlparse
65+ .. _buildstatus : https ://travis-ci.org/#!/andialbrecht/sqlparse
6666.. |coverage | image :: https://coveralls.io/repos/andialbrecht/sqlparse/badge.svg?branch=master&service=github
6767.. _coverage : https://coveralls.io/github/andialbrecht/sqlparse?branch=master
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Download & Installation
66-----------------------
77
88The latest released version can be obtained from the `Python Package
9- Index (PyPI) <http ://pypi.python.org/pypi/sqlparse/> `_. To extract the
9+ Index (PyPI) <https ://pypi.python.org/pypi/sqlparse/> `_. To extract the
1010install the module system-wide run
1111
1212.. code-block :: bash
@@ -136,8 +136,8 @@ locally.
136136
137137Please file bug reports and feature requests on the project site at
138138https://github.com/andialbrecht/sqlparse/issues/new or if you have
139- code to contribute upload it to http ://codereview.appspot.com and
139+ code to contribute upload it to https ://codereview.appspot.com/ and
140140add
[email protected] as reviewer.
141141
142142For more information about the review tool and how to use it visit
143- it's project page: http ://code.google. com/p /rietveld.
143+ it's project page: https ://github. com/rietveld-codereview /rietveld
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ User Interfaces
77 hints.
88
99``sqlformat.appspot.com ``
10- An example `Google App Engine <http ://code .google.com/appengine/ >`_
10+ An example `Google App Engine <https ://cloud .google.com/appengine/ >`_
1111 application that exposes the formatting features using a web front-end.
12- See http ://sqlformat.appspot.com for details.
12+ See https ://sqlformat.org/ for details.
1313 The source for this application is available from a source code check out
1414 of the :mod: `sqlparse ` module (see :file: `extras/appengine `).
1515
Original file line number Diff line number Diff line change 1010# SELECT statements.
1111#
1212# See:
13- # http ://groups.google.com/group /sqlparse/browse_thread/thread/b0bd9a022e9d4895
13+ # https ://groups.google.com/forum/#!forum /sqlparse/browse_thread/thread/b0bd9a022e9d4895
1414
1515import sqlparse
1616from sqlparse .sql import IdentifierList , Identifier
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ def filepath():
1616 """Returns full file path for test files."""
1717
1818 def make_filepath (filename ):
19- # http ://stackoverflow.com/questions/18011902/parameter-to-a-fixture
19+ # https ://stackoverflow.com/questions/18011902/py-test-pass-a- parameter-to-a-fixture-function
2020 # Alternate solution is to use parametrization `indirect=True`
21- # http ://stackoverflow.com/a/ 33879151
21+ # https ://stackoverflow.com/questions/18011902/py-test-pass-a-parameter-to-a-fixture-function/33879151# 33879151
2222 # Syntax is noisy and requires specific variable names
2323 return os .path .join (FILES_DIR , filename )
2424
@@ -30,9 +30,9 @@ def load_file(filepath):
3030 """Opens filename with encoding and return its contents."""
3131
3232 def make_load_file (filename , encoding = 'utf-8' ):
33- # http ://stackoverflow.com/questions/18011902/parameter-to-a-fixture
33+ # https ://stackoverflow.com/questions/18011902/py-test-pass-a- parameter-to-a-fixture-function
3434 # Alternate solution is to use parametrization `indirect=True`
35- # http ://stackoverflow.com/a/ 33879151
35+ # https ://stackoverflow.com/questions/18011902/py-test-pass-a-parameter-to-a-fixture-function/33879151# 33879151
3636 # Syntax is noisy and requires specific variable names
3737 # And seems to be limited to only 1 argument.
3838 with io .open (filepath (filename ), encoding = encoding ) as f :
You can’t perform that action at this time.
0 commit comments