File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Tools/c-analyzer/c_parser/parser Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2019,7 +2019,7 @@ https://www.sqlite.org.
20192019
20202020.. seealso ::
20212021
2022- http ://www.pysqlite.org
2022+ https ://www.pysqlite.org
20232023 The pysqlite web page.
20242024
20252025 https://www.sqlite.org
Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ def normpath(path):
364364 initial_slashes = path .startswith (sep )
365365 # POSIX allows one or two initial slashes, but treats three or more
366366 # as single slash.
367- # (see http ://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13)
367+ # (see https ://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13)
368368 if (initial_slashes and
369369 path .startswith (sep * 2 ) and not path .startswith (sep * 3 )):
370370 initial_slashes = 2
Original file line number Diff line number Diff line change 11# This contains most of the executable examples from Guido's descr
22# tutorial, once at
33#
4- # http ://www.python.org/2.2/descrintro.html
4+ # https ://www.python.org/download/releases/ 2.2.3 /descrintro/
55#
66# A few examples left implicit in the writeup were fleshed out, a few were
77# skipped due to lack of interest (e.g., faking super() by hand isn't
Original file line number Diff line number Diff line change 1212
1313* ...
1414
15- (see: http ://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf)
15+ (see: https ://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf)
1616
1717We have taken advantage of the elements of the C grammar that are used
1818only in a few limited contexts, mostly as delimiters. They allow us to
You can’t perform that action at this time.
0 commit comments