FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
Merge from renshawbay/pythonnet by tonyroberts · Pull Request #78 · pythonnet/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythonnet
/
pythonnet
Public
Notifications
You must be signed in to change notification settings
Fork
780
Star
5.5k
Code
Issues
153
Pull requests
12
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Merge from renshawbay/pythonnet
- #78
#78
Merged
tonyroberts
merged 85 commits into
pythonnet:develop
pythonnet/pythonnet:develop
from
fkarb:python3
fkarb/pythonnet:python3
Copy head branch name to clipboard
Jun 26, 2015
Conversation
Commits
85
(85)
Checks
Files changed
Merged
Merge from renshawbay/pythonnet
#78
tonyroberts
merged 85 commits into
pythonnet:develop
pythonnet/pythonnet:develop
from
fkarb:python3
fkarb/pythonnet:python3
Copy head branch name to clipboard
Commits
Commits on Sep 15, 2014
add Python 3 support
tonyroberts
committed
8134b33
View commit details
Copy full SHA for 8134b33
Browse repository at this point
Fix crash because Python 3 C API does not have PyNumber_Int
dlech
authored and
tonyroberts
committed
acb1fac
View commit details
Copy full SHA for acb1fac
Browse repository at this point
Convert IEnumerables to python lists.
patstew
authored and
tonyroberts
committed
3f2f677
View commit details
Copy full SHA for 3f2f677
Browse repository at this point
Update c# project
patstew
authored and
tonyroberts
committed
f62eb63
View commit details
Copy full SHA for f62eb63
Browse repository at this point
Add more of the PyNumber API to support mathematical operations.
patstew
authored and
tonyroberts
committed
25481af
View commit details
Copy full SHA for 25481af
Browse repository at this point
Add convenience functions to new Py class. Supports "using (Py.GIL()) {}" blocks to setup the python interpreter and take/release the GIL, and Py.kw("key1", value1, "key2", value2, ...) to add keyw…
Show description for e6eac73
patstew
authored and
tonyroberts
committed
e6eac73
View commit details
Copy full SHA for e6eac73
Browse repository at this point
Use the c# dynamic functionality for python objects.
Show description for 0bd8c47
patstew
authored and
tonyroberts
committed
0bd8c47
View commit details
Copy full SHA for 0bd8c47
Browse repository at this point
Create README.md
patstew
authored and
tonyroberts
committed
eebe879
View commit details
Copy full SHA for eebe879
Browse repository at this point
Fix readme formatting.
patstew
authored and
tonyroberts
committed
2b1d825
View commit details
Copy full SHA for 2b1d825
Browse repository at this point
Update README.md
patstew
authored and
tonyroberts
committed
11bc13a
View commit details
Copy full SHA for 11bc13a
Browse repository at this point
Add missing ) so sample code in README works
Zane D. Purvis
authored and
tonyroberts
committed
69d9933
View commit details
Copy full SHA for 69d9933
Browse repository at this point
managed types can now be subclassed in python and override virtual methods
tonyroberts
committed
2b3868f
View commit details
Copy full SHA for 2b3868f
Browse repository at this point
creating instances of classes that are managed types sub-classed in python from managed code now works
tonyroberts
committed
7e0226f
View commit details
Copy full SHA for 7e0226f
Browse repository at this point
- Ensure python threads are always initialized, even if the main interpreter hasn't initialized them, otherwise attempting to dereference objects in finalizers called by the concurrent GC will fail.
Show description for 95f123c
tonyroberts
committed
95f123c
View commit details
Copy full SHA for 95f123c
Browse repository at this point
merge from patstew-master
tonyroberts
committed
f3ff88d
View commit details
Copy full SHA for f3ff88d
Browse repository at this point
don't convert IEnumerables to python lists unless nothing else matches
Show description for 471673a
tonyroberts
committed
471673a
View commit details
Copy full SHA for 471673a
Browse repository at this point
allow base class methods to be called from derived classes either from the
Show description for f9109a0
tonyroberts
committed
f9109a0
View commit details
Copy full SHA for f9109a0
Browse repository at this point
fix derived types so managed classes can be declared in python by
Show description for 93e9ba3
tonyroberts
committed
93e9ba3
View commit details
Copy full SHA for 93e9ba3
Browse repository at this point
get the constructors from the base class rather than the type when
Show description for 7417342
tonyroberts
committed
7417342
View commit details
Copy full SHA for 7417342
Browse repository at this point
add unit tests to check python classes can derive from C# interfaces
tonyroberts
committed
686eba2
View commit details
Copy full SHA for 686eba2
Browse repository at this point
Update README.md
tonyroberts
committed
afce8dc
View commit details
Copy full SHA for afce8dc
Browse repository at this point
set __file__, __doc__ and __class__ on ModuleObject to make the managed
Show description for f0d0aeb
tonyroberts
committed
f0d0aeb
View commit details
Copy full SHA for f0d0aeb
Browse repository at this point
Stop PythonDerivedType.Finalize from trying to delete any Python objects
Show description for ecf3237
tonyroberts
committed
ecf3237
View commit details
Copy full SHA for ecf3237
Browse repository at this point
Python 3.4 compatibility (fixes #8)
tonyroberts
committed
14591b6
View commit details
Copy full SHA for 14591b6
Browse repository at this point
fix an issue with Python 3.4, it does not crash anynore when throwing an exception
sdpython
authored and
tonyroberts
committed
201137a
View commit details
Copy full SHA for 201137a
Browse repository at this point
revert exceptions.cs and runtime.cs as the changes in them aren't
Show description for c122b62
tonyroberts
committed
c122b62
View commit details
Copy full SHA for c122b62
Browse repository at this point
Fix bug when calling methods with null arguments on derived types.
tonyroberts
committed
909a537
View commit details
Copy full SHA for 909a537
Browse repository at this point
catch exceptions in tp_str when calling ToString.
tonyroberts
committed
79457fe
View commit details
Copy full SHA for 79457fe
Browse repository at this point
Fixed call to Py_SetPythonHome and Py_SetProgramName. Added support for Py_SetPythonPath
sweinst
authored and
tonyroberts
committed
b64091b
View commit details
Copy full SHA for b64091b
Browse repository at this point
Subclasses written in Python can now have their properties and methods
Show description for cfc3ef3
tonyroberts
committed
cfc3ef3
View commit details
Copy full SHA for cfc3ef3
Browse repository at this point
Fix bug in __call__ implementation when calling a base class method on
Show description for 02778b8
tonyroberts
committed
02778b8
View commit details
Copy full SHA for 02778b8
Browse repository at this point
Merge branch 'develop' into python3
Show description for 26cc77b
tonyroberts
committed
26cc77b
View commit details
Copy full SHA for 26cc77b
Browse repository at this point
fix setup.py to work with python3
tonyroberts
committed
4c53587
View commit details
Copy full SHA for 4c53587
Browse repository at this point
fix merge error (converting IEnumerable)
tonyroberts
committed
eb825df
View commit details
Copy full SHA for eb825df
Browse repository at this point
Commits on Nov 4, 2014
Update appveyor.yml
Show description for 61e83fe
tonyroberts
committed
61e83fe
View commit details
Copy full SHA for 61e83fe
Browse repository at this point
Only create a managed sub class if the python type has __namespace__ or
Show description for 3ba653e
tonyroberts
committed
3ba653e
View commit details
Copy full SHA for 3ba653e
Browse repository at this point
Add new tests for subclassing .net classes.
tonyroberts
committed
30cc22a
View commit details
Copy full SHA for 30cc22a
Browse repository at this point
Update tests for module.__file__ and __doc__ as they now both return
Show description for 263e249
tonyroberts
committed
263e249
View commit details
Copy full SHA for 263e249
Browse repository at this point
Commits on Nov 5, 2014
Create a new module for importing the embedded clr.py file into as the
Show description for 5354bc9
tonyroberts
committed
5354bc9
View commit details
Copy full SHA for 5354bc9
Browse repository at this point
add a couple of prints to unit test to see what's happening in travis-ci.
tonyroberts
committed
2019762
View commit details
Copy full SHA for 2019762
Browse repository at this point
change module.__file__ test as the filename can be any of the System dlls.
tonyroberts
committed
80b19e6
View commit details
Copy full SHA for 80b19e6
Browse repository at this point
Keep the clr module dictionary up to date in Python 3.
Show description for f8db1b8
tonyroberts
committed
f8db1b8
View commit details
Copy full SHA for f8db1b8
Browse repository at this point
Add implementation of PyObject_Compare for Python 3.
tonyroberts
committed
4527dc9
View commit details
Copy full SHA for 4527dc9
Browse repository at this point
Commits on Nov 6, 2014
update unittests for python 3 as well as python 2.
tonyroberts
committed
4bc6a60
View commit details
Copy full SHA for 4bc6a60
Browse repository at this point
Update .travis.yml
Show description for 3e522b8
tonyroberts
committed
3e522b8
View commit details
Copy full SHA for 3e522b8
Browse repository at this point
Update appveyor.yml
Show description for fad7ba3
tonyroberts
committed
fad7ba3
View commit details
Copy full SHA for fad7ba3
Browse repository at this point
Update .travis.yml
Show description for c1faa64
tonyroberts
committed
c1faa64
View commit details
Copy full SHA for c1faa64
Browse repository at this point
fix testing clr module type name in python 2 tests
tonyroberts
committed
c73acfd
View commit details
Copy full SHA for c73acfd
Browse repository at this point
convert bytes to string in mono build when building for python 3
tonyroberts
committed
b41eaaa
View commit details
Copy full SHA for b41eaaa
Browse repository at this point
Merge branch 'python3' of https://github.com/renshawbay/pythonnet_new into python3
tonyroberts
committed
6963b12
View commit details
Copy full SHA for 6963b12
Browse repository at this point
Use unicode functions instead of string functions when building for python
Show description for ce0545f
tonyroberts
committed
ce0545f
View commit details
Copy full SHA for ce0545f
Browse repository at this point
Commits on Nov 7, 2014
Fix Py_Main for python 3
tonyroberts
committed
6eb59ec
View commit details
Copy full SHA for 6eb59ec
Browse repository at this point
Commits on Nov 10, 2014
Changes to the monoclr build so it builds for python 3.
tonyroberts
committed
5062377
View commit details
Copy full SHA for 5062377
Browse repository at this point
Fix copy and paste error in python 2 branch of the mono code.
tonyroberts
committed
195513b
View commit details
Copy full SHA for 195513b
Browse repository at this point
bug in setup.py
tonyroberts
committed
66f0449
View commit details
Copy full SHA for 66f0449
Browse repository at this point
Commits on Nov 26, 2014
Fix reference counting bug in Converter.ToPython.
tonyroberts
committed
ee15bf4
View commit details
Copy full SHA for ee15bf4
Browse repository at this point
Commits on Nov 27, 2014
Make sure PyObject instances are disposed cleanly.
Show description for 150a900
tonyroberts
committed
150a900
View commit details
Copy full SHA for 150a900
Browse repository at this point
Commits on Jan 28, 2015
Make sure temporary dictionary is disposed correctly.
unknown
authored and
unknown
committed
3a65dc1
View commit details
Copy full SHA for 3a65dc1
Browse repository at this point
Fix a few more temporary objects to be disposed cleanly.
unknown
authored and
unknown
committed
8f8aff9
View commit details
Copy full SHA for 8f8aff9
Browse repository at this point
Update README.md
tonyroberts
committed
d8e46d1
View commit details
Copy full SHA for d8e46d1
Browse repository at this point
Update README.md
tonyroberts
committed
0852bec
View commit details
Copy full SHA for 0852bec
Browse repository at this point
Commits on Feb 2, 2015
Merge pull request #2 from pythonnet/develop
Show description for 41ff7cb
tonyroberts
committed
41ff7cb
View commit details
Copy full SHA for 41ff7cb
Browse repository at this point
Commits on Jun 5, 2015
Dispose the owned 'current' object owned by PyIter instances when no longer needed.
tonyroberts
committed
42a7dca
View commit details
Copy full SHA for 42a7dca
Browse repository at this point
Dispose PyObject instances after use.
tonyroberts
committed
796611a
View commit details
Copy full SHA for 796611a
Browse repository at this point
Merge branch 'python3' of https://github.com/renshawbay/pythonnet into python3
tonyroberts
committed
2c183ed
View commit details
Copy full SHA for 2c183ed
Browse repository at this point
Commits on Jun 10, 2015
Fix build issue with Python 3.3/3.4.
Show description for 535babc
tonyroberts
committed
535babc
View commit details
Copy full SHA for 535babc
Browse repository at this point
Commits on Jun 15, 2015
Fix issue copying npython to scripts.
tonyroberts
committed
824b5c7
View commit details
Copy full SHA for 824b5c7
Browse repository at this point
Copy pdb files to build folder if they exist.
tonyroberts
committed
591b374
View commit details
Copy full SHA for 591b374
Browse repository at this point
Fix some issues in the import hook.
Show description for 95638e5
tonyroberts
committed
95638e5
View commit details
Copy full SHA for 95638e5
Browse repository at this point
Fix Int32 conversion for Python 3.
tonyroberts
committed
d64273e
View commit details
Copy full SHA for d64273e
Browse repository at this point
Commits on Jun 16, 2015
When shutting down don't delete any Python objects after Py_Finalize has
Show description for cc7fe9a
tonyroberts
committed
cc7fe9a
View commit details
Copy full SHA for cc7fe9a
Browse repository at this point
Commits on Jun 17, 2015
Fix decref of locals in RunString.
Show description for 5e2e708
tonyroberts
committed
5e2e708
View commit details
Copy full SHA for 5e2e708
Browse repository at this point
Revert accidental change in last commit.
tonyroberts
committed
5b9e0dd
View commit details
Copy full SHA for 5b9e0dd
Browse repository at this point
Commits on Jun 23, 2015
Set LD_LIBRARY_PATH before starting Mono.
Show description for c7db273
tonyroberts
committed
c7db273
View commit details
Copy full SHA for c7db273
Browse repository at this point
Fix clr module to work without npython.
Show description for 9b2d6f2
tonyroberts
committed
9b2d6f2
View commit details
Copy full SHA for 9b2d6f2
Browse repository at this point
Update README.md
Show description for 9afa91d
tonyroberts
committed
9afa91d
View commit details
Copy full SHA for 9afa91d
Browse repository at this point
Commits on Jun 24, 2015
Update CI scripts now npython is no longer used.
tonyroberts
committed
0ec51a3
View commit details
Copy full SHA for 0ec51a3
Browse repository at this point
Merge branch 'python3' of github.com:renshawbay/pythonnet into python3
tonyroberts
committed
497b638
View commit details
Copy full SHA for 497b638
Browse repository at this point
Fixes for OSX.
tonyroberts
committed
88aa3c4
View commit details
Copy full SHA for 88aa3c4
Browse repository at this point
Set a logical name for the clr.py resource.
tonyroberts
committed
3c3919d
View commit details
Copy full SHA for 3c3919d
Browse repository at this point
Merge pull request #6 from renshawbay/osx
Show description for 9d96da5
tonyroberts
committed
9d96da5
View commit details
Copy full SHA for 9d96da5
Browse repository at this point
Commits on Jun 25, 2015
Merge branch 'develop' of https://github.com/pythonnet/pythonnet into pythonnet-develop
Show description for aad52dc
tonyroberts
committed
aad52dc
View commit details
Copy full SHA for aad52dc
Browse repository at this point
Merge branch 'pythonnet-develop' into python3
tonyroberts
committed
ff7d4ac
View commit details
Copy full SHA for ff7d4ac
Browse repository at this point
Add Python 3 dlls to dll map.
tonyroberts
committed
1ee7031
View commit details
Copy full SHA for 1ee7031
Browse repository at this point
Commits on Jun 26, 2015
Update README.md
Show description for dd2dcd0
tonyroberts
committed
dd2dcd0
View commit details
Copy full SHA for dd2dcd0
Browse repository at this point
Back
|
FazBrowse Home
|
New Git URL