You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/07/16 01:58:20 UTC

[skywalking-python] branch refactor/python-package created (now 99842f0)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch refactor/python-package
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git.


      at 99842f0  Refactor: move __init__.py to individual file

This branch includes the following new commits:

     new 99842f0  Refactor: move __init__.py to individual file

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-python] 01/01: Refactor: move __init__.py to individual file

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch refactor/python-package
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git

commit 99842f0fe9ed4354a34943451cd8c93fec6a08c3
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Thu Jul 16 09:57:58 2020 +0800

    Refactor: move __init__.py to individual file
---
 skywalking/agent/protocol/{grpc/__init__.py => grpc.py}                   | 0
 skywalking/agent/protocol/{http/__init__.py => http.py}                   | 0
 skywalking/client/{grpc/__init__.py => grpc.py}                           | 0
 skywalking/client/{http/__init__.py => http.py}                           | 0
 skywalking/{config/__init__.py => config.py}                              | 0
 skywalking/{decorators/__init__.py => decorators.py}                      | 0
 skywalking/{loggings/__init__.py => loggings.py}                          | 0
 skywalking/plugins/{sw_flask/__init__.py => sw_flask.py}                  | 0
 skywalking/plugins/{sw_http_server/__init__.py => sw_http_server.py}      | 0
 skywalking/plugins/{sw_pymysql/__init__.py => sw_pymysql.py}              | 0
 skywalking/plugins/{sw_requests/__init__.py => sw_requests.py}            | 0
 .../plugins/{sw_urllib_request/__init__.py => sw_urllib_request.py}       | 0
 skywalking/trace/{carrier/__init__.py => carrier.py}                      | 0
 skywalking/trace/{context/__init__.py => context.py}                      | 0
 skywalking/trace/{segment/__init__.py => segment.py}                      | 0
 skywalking/trace/{span/__init__.py => span.py}                            | 0
 skywalking/trace/{tags/__init__.py => tags.py}                            | 0
 17 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/skywalking/agent/protocol/grpc/__init__.py b/skywalking/agent/protocol/grpc.py
similarity index 100%
rename from skywalking/agent/protocol/grpc/__init__.py
rename to skywalking/agent/protocol/grpc.py
diff --git a/skywalking/agent/protocol/http/__init__.py b/skywalking/agent/protocol/http.py
similarity index 100%
rename from skywalking/agent/protocol/http/__init__.py
rename to skywalking/agent/protocol/http.py
diff --git a/skywalking/client/grpc/__init__.py b/skywalking/client/grpc.py
similarity index 100%
rename from skywalking/client/grpc/__init__.py
rename to skywalking/client/grpc.py
diff --git a/skywalking/client/http/__init__.py b/skywalking/client/http.py
similarity index 100%
rename from skywalking/client/http/__init__.py
rename to skywalking/client/http.py
diff --git a/skywalking/config/__init__.py b/skywalking/config.py
similarity index 100%
rename from skywalking/config/__init__.py
rename to skywalking/config.py
diff --git a/skywalking/decorators/__init__.py b/skywalking/decorators.py
similarity index 100%
rename from skywalking/decorators/__init__.py
rename to skywalking/decorators.py
diff --git a/skywalking/loggings/__init__.py b/skywalking/loggings.py
similarity index 100%
rename from skywalking/loggings/__init__.py
rename to skywalking/loggings.py
diff --git a/skywalking/plugins/sw_flask/__init__.py b/skywalking/plugins/sw_flask.py
similarity index 100%
rename from skywalking/plugins/sw_flask/__init__.py
rename to skywalking/plugins/sw_flask.py
diff --git a/skywalking/plugins/sw_http_server/__init__.py b/skywalking/plugins/sw_http_server.py
similarity index 100%
rename from skywalking/plugins/sw_http_server/__init__.py
rename to skywalking/plugins/sw_http_server.py
diff --git a/skywalking/plugins/sw_pymysql/__init__.py b/skywalking/plugins/sw_pymysql.py
similarity index 100%
rename from skywalking/plugins/sw_pymysql/__init__.py
rename to skywalking/plugins/sw_pymysql.py
diff --git a/skywalking/plugins/sw_requests/__init__.py b/skywalking/plugins/sw_requests.py
similarity index 100%
rename from skywalking/plugins/sw_requests/__init__.py
rename to skywalking/plugins/sw_requests.py
diff --git a/skywalking/plugins/sw_urllib_request/__init__.py b/skywalking/plugins/sw_urllib_request.py
similarity index 100%
rename from skywalking/plugins/sw_urllib_request/__init__.py
rename to skywalking/plugins/sw_urllib_request.py
diff --git a/skywalking/trace/carrier/__init__.py b/skywalking/trace/carrier.py
similarity index 100%
rename from skywalking/trace/carrier/__init__.py
rename to skywalking/trace/carrier.py
diff --git a/skywalking/trace/context/__init__.py b/skywalking/trace/context.py
similarity index 100%
rename from skywalking/trace/context/__init__.py
rename to skywalking/trace/context.py
diff --git a/skywalking/trace/segment/__init__.py b/skywalking/trace/segment.py
similarity index 100%
rename from skywalking/trace/segment/__init__.py
rename to skywalking/trace/segment.py
diff --git a/skywalking/trace/span/__init__.py b/skywalking/trace/span.py
similarity index 100%
rename from skywalking/trace/span/__init__.py
rename to skywalking/trace/span.py
diff --git a/skywalking/trace/tags/__init__.py b/skywalking/trace/tags.py
similarity index 100%
rename from skywalking/trace/tags/__init__.py
rename to skywalking/trace/tags.py