Skip to main content

easy func debug tool

Project description

ezdbg

下の方に日本語の説明があります

Overview

  • easy func debug tool
  • description is under construction

Usage

  • recording (record arguments of the target function)
import ezdbg

@ezdbg.rec
def func(x):
	return x ** 2

func(17)
  • unit test of the function (Only the function is executed.)
import ezdbg

@ezdbg.test	# 【!】REWRITE HERE
def func(x):
	return x ** 2

func(17)

概要

  • python関数を簡単にデバッグできるツール
  • 説明は執筆中です

使い方

  • 記録時 (関数の引数を記録)
import ezdbg

@ezdbg.rec
def func(x):
	return x ** 2

func(17)
  • 関数単体テスト時 (その関数のみが実行される)
import ezdbg

@ezdbg.test	# 【!】ここを書き換える
def func(x):
	return x ** 2

func(17)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ezdbg-0.0.0.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

ezdbg-0.0.0-py3-none-any.whl (2.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page