From daef66eae5544e002ecc0b8fe764329978f6f5f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Mon, 6 Jan 2014 00:23:20 +0100 Subject: [PATCH] Add encoding markers --- src/frida/__init__.py | 2 ++ src/frida/core.py | 2 ++ src/frida/discoverer.py | 2 ++ src/frida/tracer.py | 2 ++ tests/__init__.py | 2 ++ tests/test_core.py | 2 ++ tests/test_discoverer.py | 2 ++ tests/test_tracer.py | 2 ++ 8 files changed, 16 insertions(+) diff --git a/src/frida/__init__.py b/src/frida/__init__.py index 6d69a19..a356fba 100644 --- a/src/frida/__init__.py +++ b/src/frida/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + def spawn(command_line, device_id = None): return get_device_manager().get_device(device_id).spawn(command_line) diff --git a/src/frida/core.py b/src/frida/core.py index e02db92..c9ab7cf 100644 --- a/src/frida/core.py +++ b/src/frida/core.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import bisect import collections import fnmatch diff --git a/src/frida/discoverer.py b/src/frida/discoverer.py index c3fa2ff..3e32688 100644 --- a/src/frida/discoverer.py +++ b/src/frida/discoverer.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from frida.core import ModuleFunction class Discoverer(object): diff --git a/src/frida/tracer.py b/src/frida/tracer.py index ccc414f..2984ef4 100644 --- a/src/frida/tracer.py +++ b/src/frida/tracer.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from frida.core import ModuleFunction import os import fnmatch diff --git a/tests/__init__.py b/tests/__init__.py index b804f75..dced6aa 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from .test_core import TestCore from .test_discoverer import TestDiscoverer from .test_tracer import TestTracer diff --git a/tests/test_core.py b/tests/test_core.py index d3f5db4..b0e90bf 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import frida import platform import subprocess diff --git a/tests/test_discoverer.py b/tests/test_discoverer.py index 7d1e88f..3b4251f 100644 --- a/tests/test_discoverer.py +++ b/tests/test_discoverer.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import frida from frida.core import Reactor from frida.discoverer import Discoverer, UI diff --git a/tests/test_tracer.py b/tests/test_tracer.py index ada2ada..8b0bb47 100644 --- a/tests/test_tracer.py +++ b/tests/test_tracer.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import frida from frida.core import Reactor from frida.tracer import Tracer, TracerProfileBuilder, MemoryRepository, UI