Skip to content

Commit 7dbb827

Browse files
committed
fix unicode issue in dict to xml routine
1 parent e55d2cc commit 7dbb827

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Changes for ebaysdk
22

3+
1.0.2 Sat Feb 8 20:44:00 PST 2014
4+
- fix unicode issue is dict to xml routine
5+
- add a unicode test
36
- fix http back-end
47

58
1.0.0

ebaysdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import platform
1010
import logging
1111

12-
__version__ = '1.0.1'
12+
__version__ = '1.0.2'
1313
Version = __version__ # for backware compatibility
1414

1515

ebaysdk/finding/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Connection(BaseConnection):
2626
2727
Doctests:
2828
>>> f = Connection(config_file=os.environ.get('EBAY_YAML'))
29-
>>> retval = f.execute('findItemsAdvanced', {'keywords': 'shoes'})
29+
>>> retval = f.execute('findItemsAdvanced', {'keywords': 'niño'})
3030
>>> error = f.error()
3131
>>> print(error)
3232
None

samples/finding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def run(opts):
4242
config_file=opts.yaml, warnings=True)
4343

4444
api.execute('findItemsAdvanced', {
45-
'keywords': 'python',
45+
'keywords': 'niño',
4646
'itemFilter': [
4747
{'name': 'Condition',
4848
'value': 'Used'},

tests/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ def getTestSuite():
3131
suite.addTest(doctest.DocTestSuite(ebaysdk.shopping))
3232
suite.addTest(doctest.DocTestSuite(ebaysdk.trading))
3333
suite.addTest(doctest.DocTestSuite(ebaysdk.merchandising))
34-
suite.addTest(doctest.DocTestSuite(ebaysdk.soa.finditem))
34+
35+
# Internal Only Service
36+
#uite.addTest(doctest.DocTestSuite(ebaysdk.soa.finditem))
3537
return suite
3638

3739
runner = unittest.TextTestRunner()

0 commit comments

Comments
 (0)