Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Syncleus
apex-aprs
Commits
749c22cb
Commit
749c22cb
authored
Oct 01, 2016
by
Jeffrey Phillips Freeman
💥
Browse files
Moving KissMock out into its own file.
parent
ea94b0f9
Changes
29
Hide whitespace changes
Inline
Side-by-side
src/apex/__init__.py
View file @
749c22cb
...
...
@@ -2,7 +2,7 @@
Main module for APEX refernce implementation application.
"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/__main__.py
View file @
749c22cb
...
...
@@ -12,7 +12,7 @@ Why does this file exist, and why __main__? For more info, read:
- https://docs.python.org/3/using/cmdline.html#cmdoption-m
"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/aprs/__init__.py
View file @
749c22cb
...
...
@@ -15,7 +15,7 @@ APRS Python Module.
"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/aprs/aprs_kiss.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""APRS KISS Class Definitions"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/aprs/constants.py
View file @
749c22cb
...
...
@@ -5,7 +5,7 @@
Constants for APRS Module.
"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/aprs/decimal_degrees.py
View file @
749c22cb
...
...
@@ -48,7 +48,7 @@ $ python decimal_degrees.py [-v]
"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/aprs/igate.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""APRS Internet Service Class Definitions"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/aprs/util.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""Utilities for the APRS Python Module."""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/kiss/__init__.py
View file @
749c22cb
...
...
@@ -15,7 +15,7 @@ KISS Python Module.
"""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/kiss/constants.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""Constants for KISS Python Module."""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/kiss/kiss.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""KISS Core Classes."""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/kiss/kiss_serial.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""KISS Core Classes."""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/kiss/kiss_tcp.py
View file @
749c22cb
...
...
@@ -3,7 +3,7 @@
"""KISS Core Classes."""
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/plugin_loader.py
View file @
749c22cb
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/plugins/__init__.py
View file @
749c22cb
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/plugins/apexparadigm/__init__.py
View file @
749c22cb
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/plugins/beacon/__init__.py
View file @
749c22cb
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/plugins/id/__init__.py
View file @
749c22cb
##!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/plugins/status/__init__.py
View file @
749c22cb
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
src/apex/routing/__init__.py
View file @
749c22cb
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# These imports are for python3 compat
a
bility inside python2
# These imports are for python3 compat
i
bility inside python2
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment