Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
satella
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
satella
Commits
0ea83fce
Commit
0ea83fce
authored
7 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
linelen
parent
b191541b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/conf.py
+0
-8
0 additions, 8 deletions
docs/conf.py
docs/index.rst
+10
-10
10 additions, 10 deletions
docs/index.rst
satella/instrumentation/trace_back.py
+2
-2
2 additions, 2 deletions
satella/instrumentation/trace_back.py
setup.py
+4
-4
4 additions, 4 deletions
setup.py
with
16 additions
and
24 deletions
docs/conf.py
+
0
−
8
View file @
0ea83fce
...
@@ -81,7 +81,6 @@ pygments_style = 'sphinx'
...
@@ -81,7 +81,6 @@ pygments_style = 'sphinx'
# If true, `todo` and `todoList` produce output, else they produce nothing.
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos
=
False
todo_include_todos
=
False
# -- Options for HTML output ----------------------------------------------
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# The theme to use for HTML and HTML Help pages. See the documentation for
...
@@ -100,13 +99,11 @@ html_theme = 'alabaster'
...
@@ -100,13 +99,11 @@ html_theme = 'alabaster'
# so a file named "default.css" will overwrite the builtin "default.css".
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path
=
[
'
_static
'
]
html_static_path
=
[
'
_static
'
]
# -- Options for HTMLHelp output ------------------------------------------
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
# Output file base name for HTML help builder.
htmlhelp_basename
=
'
satelladoc
'
htmlhelp_basename
=
'
satelladoc
'
# -- Options for LaTeX output ---------------------------------------------
# -- Options for LaTeX output ---------------------------------------------
latex_elements
=
{
latex_elements
=
{
...
@@ -135,7 +132,6 @@ latex_documents = [
...
@@ -135,7 +132,6 @@ latex_documents = [
u
'
Piotr Maslanka
'
,
'
manual
'
),
u
'
Piotr Maslanka
'
,
'
manual
'
),
]
]
# -- Options for manual page output ---------------------------------------
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# One entry per manual page. List of tuples
...
@@ -145,7 +141,6 @@ man_pages = [
...
@@ -145,7 +141,6 @@ man_pages = [
[
author
],
1
)
[
author
],
1
)
]
]
# -- Options for Texinfo output -------------------------------------------
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# Grouping the document tree into Texinfo files. List of tuples
...
@@ -156,6 +151,3 @@ texinfo_documents = [
...
@@ -156,6 +151,3 @@ texinfo_documents = [
author
,
'
satella
'
,
'
One line description of project.
'
,
author
,
'
satella
'
,
'
One line description of project.
'
,
'
Miscellaneous
'
),
'
Miscellaneous
'
),
]
]
This diff is collapsed.
Click to expand it.
docs/index.rst
+
10
−
10
View file @
0ea83fce
...
@@ -2,17 +2,17 @@ Welcome to satella's documentation!
...
@@ -2,17 +2,17 @@ Welcome to satella's documentation!
===================================
===================================
.. toctree::
.. toctree::
:maxdepth: 2
:maxdepth: 2
:caption: Contents:
:caption: Contents:
coding/monitor
coding/monitor
coding/debug
coding/debug
coding/typechecking
coding/typechecking
coding/structures
coding/structures
instrumentation/traceback
instrumentation/traceback
instrumentation/metrics
instrumentation/metrics
source/modules
source/modules
examples/echoist
examples/echoist
Indices and tables
Indices and tables
...
...
This diff is collapsed.
Click to expand it.
satella/instrumentation/trace_back.py
+
2
−
2
View file @
0ea83fce
...
@@ -144,7 +144,7 @@ class StoredVariable(object):
...
@@ -144,7 +144,7 @@ class StoredVariable(object):
self
.
pickle
=
zlib
.
compress
(
self
.
pickle
=
zlib
.
compress
(
self
.
pickle
,
self
.
pickle
,
policy
.
get_compression_level
(
policy
.
get_compression_level
(
self
.
pickle
))
self
.
pickle
))
self
.
pickle_type
=
"
pickle/gzip
"
self
.
pickle_type
=
"
pickle/gzip
"
except
zlib
.
error
:
except
zlib
.
error
:
pass
# ok, keep normal
pass
# ok, keep normal
...
@@ -255,7 +255,7 @@ class Traceback(object):
...
@@ -255,7 +255,7 @@ class Traceback(object):
output
.
write
(
u
'
\n
* Stack trace, innermost first
\n
'
)
output
.
write
(
u
'
\n
* Stack trace, innermost first
\n
'
)
for
frame
in
self
.
frames
:
for
frame
in
self
.
frames
:
output
.
write
(
u
'
** %s at %s:%s
\n
'
%
(
output
.
write
(
u
'
** %s at %s:%s
\n
'
%
(
frame
.
name
,
frame
.
filename
,
frame
.
lineno
))
frame
.
name
,
frame
.
filename
,
frame
.
lineno
))
for
name
,
value
in
six
.
iteritems
(
frame
.
locals
):
for
name
,
value
in
six
.
iteritems
(
frame
.
locals
):
try
:
try
:
output
.
write
(
u
'
*** %s: %s
\n
'
%
(
name
,
value
.
repr
))
output
.
write
(
u
'
*** %s: %s
\n
'
%
(
name
,
value
.
repr
))
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
4
View file @
0ea83fce
...
@@ -4,12 +4,12 @@ from setuptools import setup, find_packages
...
@@ -4,12 +4,12 @@ from setuptools import setup, find_packages
setup
(
keywords
=
[
'
ha
'
,
'
high availability
'
,
'
scalable
'
,
'
scalability
'
,
'
server
'
],
setup
(
keywords
=
[
'
ha
'
,
'
high availability
'
,
'
scalable
'
,
'
scalability
'
,
'
server
'
],
packages
=
find_packages
(
include
=
[
'
satella
'
,
'
satella.*
'
]),
packages
=
find_packages
(
include
=
[
'
satella
'
,
'
satella.*
'
]),
install_requires
=
[
install_requires
=
[
"
six
"
,
"
six
"
,
"
monotonic
"
,
"
monotonic
"
,
"
backports.typing
"
"
backports.typing
"
],
],
tests_require
=
[
tests_require
=
[
"
nose
"
,
"
mock
"
,
"
coverage
"
"
nose
"
,
"
mock
"
,
"
coverage
"
],
],
test_suite
=
'
nose.collector
'
test_suite
=
'
nose.collector
'
)
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment