ruby: handle singleton method including ?!= in its name(sf.bug:364)
[geany-mirror.git] / tests / ctags / py-skipped-string.py
blob9ec4b7d45457356af7411b2ba1bcc7ec2f9ce3ca
1 # triple start string immediately after a normal string not detected
3 def f1():
4 ''"""
5 The string above was not detected as triple start string,
6 but the one below instead.
7 """
8 print "f1"
10 def f2():
11 ''"""
12 The string above was then detected as end string,
13 and the one below as start string again.
14 """
15 print "f2"
17 def f3():
18 """
19 The string below is prepared so that ctags with the bug does not start a
20 new triple string. For a clean precondition for the next test.
21 ''"""
22 print "f3"
24 # normal string immediately after a normal string not detected
26 ''" import os\
29 ""' def fX():\