From 0bbb4f2f0cbaa6ffb5c7a2c018a3819cca0b2405 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Mon, 11 Jan 2016 20:42:13 +0100 Subject: [python] Remove double quotes from unicode values When converting a ledger.Value to unicode the Python API added double quotes around it. --- test/regress/B21BF389.py | 9 +++++++++ test/regress/B21BF389_py.test | 8 ++++++++ 2 files changed, 17 insertions(+) create mode 100644 test/regress/B21BF389.py create mode 100644 test/regress/B21BF389_py.test (limited to 'test/regress') diff --git a/test/regress/B21BF389.py b/test/regress/B21BF389.py new file mode 100644 index 00000000..707ce340 --- /dev/null +++ b/test/regress/B21BF389.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from __future__ import print_function, unicode_literals + +import ledger + +for post in ledger.read_journal(__file__.replace(".py", "_py.test")).query("income"): + print(unicode(post.tag("Reference"))) diff --git a/test/regress/B21BF389_py.test b/test/regress/B21BF389_py.test new file mode 100644 index 00000000..c0a2166a --- /dev/null +++ b/test/regress/B21BF389_py.test @@ -0,0 +1,8 @@ +2016/01/11 * Employer + Assets:Checking + Income:Salary € 1.500,00 + ; Reference: Christmas bonus + +test python test/regress/B21BF389.py +Christmas bonus +end test -- cgit v1.2.3