-
Notifications
You must be signed in to change notification settings - Fork 14
Small fixes while reviewing the document #7
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The mono
executable is lowercase. Also it is not strictly necessary to use mono like this (binfmt_misc
), I'd just drop that addition.
Good catch, TIL about binfmt_misc. However it likely requires registration like on Windows. Here is a quick test:
|
readme.html
Outdated
@@ -115,7 +115,7 @@ | |||
<li><a href="#exceptions">Exception Handling</a></li> | |||
<li><a href="#arrays">Using Arrays</a></li> | |||
<li><a href="#collections">Using Collections</a></li> | |||
<li><a href="#com">COM Components</a></li> | |||
<li><a href="#com">COM Componefnts</a></li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep
readme.html
Outdated
@@ -422,8 +422,8 @@ | |||
try: | |||
raise NullReferenceException("aiieee!") | |||
except NullReferenceException, e: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
except NullReferenceException as e:
for it to be PY3 compatible
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this one is outside of what you were fixing. Just noticed it while reviewing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Ok to squash-merge
@vmuriart should we defer updating PythonNet to pythonnet? |
I didn't see it as part of these changes. Let's not add them yet till we come closer to a decision. |
@filmor do you agree with merging this? |
npython, print(), py36, typo, links, simplified API