Skip to content

Commit 067db25

Browse files
authored
Merge branch 'master' into exception-python-type-name
2 parents 625f48f + 8629e1e commit 067db25

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

AUTHORS.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
- David Lechner ([@dlech](https://github.com/dlech))
2424
- Dmitriy Se ([@dmitriyse](https://github.com/dmitriyse))
2525
- He-chien Tsai ([@t3476](https://github.com/t3476))
26-
- Jeff Reback ([@jreback](https://github.com/jreback))
26+
-   Ivan Cronyn ([@cronan](https://github.com/cronan))
27+
-   Jeff Reback ([@jreback](https://github.com/jreback))
2728
- Joe Frayne ([@jfrayne](https://github.com/jfrayne))
2829
- John Burnett ([@johnburnett](https://github.com/johnburnett))
2930
- Luke Stratman ([@lstratman](https://github.com/lstratman))

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ from System.Windows.Forms import Form
4444
a `using (Py.GIL()) {/* Your code here */}` block.
4545
- Import python modules using `dynamic mod = Py.Import("mod")`,
4646
then you can call functions as normal, eg `mod.func(args)`.
47-
- Use `mod.func(args, Py.kw("keywordargname", keywordargvalue))` or `mod.func(args, keywordargname=keywordargvalue)`
47+
- Use `mod.func(args, Py.kw("keywordargname", keywordargvalue))` or `mod.func(args, keywordargname: keywordargvalue)`
4848
to apply keyword arguments.
4949
- All python objects should be declared as `dynamic` type.
5050
- Mathematical operations involving python and literal/managed types must

0 commit comments

Comments
 (0)