Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
main
pyicu
Commits
299456cb
Commit
299456cb
authored
Apr 06, 2021
by
Andi Vajda
Browse files
refreshed examples for Python 3
parent
e1dce4bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
299456cb
...
...
@@ -279,9 +279,9 @@ For example, let ``e`` be a ``StringEnumeration`` instance:
```python
e = TimeZone.createEnumeration()
[s for s in e] # a list of
``
str
``
objects
[s for s in iter(e.unext, '')] # a list of
``
str
``
objects
[s for s in iter(e.snext, '')] # a list of
``
UnicodeString
``
objects
[s for s in e] # a list of
'
str
'
objects
[s for s in iter(e.unext, '')] # a list of
'
str
' or 'unicode'
objects
[s for s in iter(e.snext, '')] # a list of
'
UnicodeString
'
objects
```
### timezones
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment