File tree 4 files changed +4
-4
lines changed
Tools/c-analyzer/c_parser/parser
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.
2019
2019
2020
2020
.. seealso ::
2021
2021
2022
- http ://www.pysqlite.org
2022
+ https ://www.pysqlite.org
2023
2023
The pysqlite web page.
2024
2024
2025
2025
https://www.sqlite.org
Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ def normpath(path):
364
364
initial_slashes = path .startswith (sep )
365
365
# POSIX allows one or two initial slashes, but treats three or more
366
366
# 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)
368
368
if (initial_slashes and
369
369
path .startswith (sep * 2 ) and not path .startswith (sep * 3 )):
370
370
initial_slashes = 2
Original file line number Diff line number Diff line change 1
1
# This contains most of the executable examples from Guido's descr
2
2
# tutorial, once at
3
3
#
4
- # http ://www.python.org/2.2/descrintro.html
4
+ # https ://www.python.org/download/releases/ 2.2.3 /descrintro/
5
5
#
6
6
# A few examples left implicit in the writeup were fleshed out, a few were
7
7
# skipped due to lack of interest (e.g., faking super() by hand isn't
Original file line number Diff line number Diff line change 12
12
13
13
* ...
14
14
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)
16
16
17
17
We have taken advantage of the elements of the C grammar that are used
18
18
only in a few limited contexts, mostly as delimiters. They allow us to
You can’t perform that action at this time.
0 commit comments