Every line of 'istitle python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
198 def is_title(line): 199 n = line.find("\\title{") 200 if n < 0: 201 return 0 202 return 1
43 def text_istitle(word): 44 if len(word) == 0: 45 return False 46 try: 47 titles = [s[0] for s in word.split(" ")] 48 for token in titles: 49 if token[0].istitle() is False: 50 return False 51 return True 52 except Exception: 53 return False
136 def title_short(s): 137 """ 138 title_short("str[ing]") -> "str" 139 """ 140 return spaces(_title_short_re.sub("", s))
79 def get_title(python_script): 80 with open(os.path.join(examples_dir, python_script), "r") as fp: 81 while True: 82 line = fp.readline() 83 if line[:3] == '"""': 84 title = fp.readline().strip().strip(".") 85 break 86 return title