8000 type1font.py fixes and test case by jkseppan · Pull Request #4522 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

type1font.py fixes and test case #4522

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 3, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Attempt to document the _whitespace etc objects a bit
  • Loading branch information
jkseppan committed Jun 14, 2015
commit 301986a4dda8ad2e35e806f33948e7bae25c1328
2 changes: 1 addition & 1 deletion lib/matplotlib/type1font.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _split(self, data):
_comment_re = re.compile(br'%[^\r\n\v]*')
_instring_re = re.compile(br'[()\\]')

# token types
# token types, compared via object identity (poor man's enum)
_whitespace = object()
_name = object()
_string = object()
Expand Down
0