Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
gyp /
generator /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
0
B
-rw-r--r--
2022-04-04 16:54
analyzer.py
29.92
KB
-rw-r--r--
2022-04-04 16:54
cmake.py
44.89
KB
-rw-r--r--
2022-07-16 12:04
dump_dependency_json.py
3.38
KB
-rw-r--r--
2022-04-04 16:54
eclipse.py
16.6
KB
-rw-r--r--
2022-04-04 16:54
gypd.py
3.39
KB
-rw-r--r--
2022-04-04 16:54
gypsh.py
1.63
KB
-rw-r--r--
2022-04-04 16:54
make.py
90.42
KB
-rw-r--r--
2022-07-16 12:04
msvs.py
131.01
KB
-rw-r--r--
2022-04-04 16:54
msvs_test.py
1.05
KB
-rw-r--r--
2022-04-04 16:54
ninja.py
101.77
KB
-rw-r--r--
2022-07-16 12:04
ninja_test.py
1.73
KB
-rw-r--r--
2022-04-04 16:54
xcode.py
56.78
KB
-rw-r--r--
2022-04-04 16:54
xcode_test.py
645
B
-rw-r--r--
2022-04-04 16:54
Save
Rename
#!/usr/bin/env python # Copyright (c) 2013 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Unit tests for the xcode.py file. """ import gyp.generator.xcode as xcode import unittest import sys class TestEscapeXcodeDefine(unittest.TestCase): if sys.platform == 'darwin': def test_InheritedRemainsUnescaped(self): self.assertEqual(xcode.EscapeXcodeDefine('$(inherited)'), '$(inherited)') def test_Escaping(self): self.assertEqual(xcode.EscapeXcodeDefine('a b"c\\'), 'a\\ b\\"c\\\\') if __name__ == '__main__': unittest.main()