File tree 5 files changed +5
-2
lines changed
5 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 48
48
- ([ @rmadsen-ks ] ( https://github.com/rmadsen-ks ) )
49
49
- ([ @stonebig ] ( https://github.com/stonebig ) )
50
50
- ([ @testrunner123 ] ( https://github.com/testrunner123 ) )
51
+ - ([ @GSPP ] ( https://github.com/GSPP ) )
51
52
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
31
31
- Fixed ` clr.GetClrType ` when iterating over ` System ` members (#607 )
32
32
- Fixed ` LockRecursionException ` when loading assemblies (#627 )
33
33
- Fixed errors breaking .NET Remoting on method invoke (#276 )
34
+ - Fixed PyObject.GetHashCode (#676 )
34
35
35
36
36
37
## [ 2.3.0] [ ] - 2017-03-11
Original file line number Diff line number Diff line change 41
41
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
42
42
43
43
install :
44
+ - python -m pip install -U pip
44
45
- pip install --upgrade -r requirements.txt --quiet
45
46
46
47
# Install OpenCover. Can't put on `packages.config`, not Mono compatible
Original file line number Diff line number Diff line change 6
6
codecov
7
7
8
8
# Platform specific requirements
9
- pip ; sys_platform == 'win32'
9
+ # pip; sys_platform == 'win32'
10
10
wheel ; sys_platform == 'win32'
11
11
pycparser ; sys_platform != 'win32'
Original file line number Diff line number Diff line change @@ -909,7 +909,7 @@ public override bool Equals(object o)
909
909
/// </remarks>
910
910
public override int GetHashCode ( )
911
911
{
912
- return Runtime . PyObject_Hash ( obj ) . ToInt32 ( ) ;
912
+ return ( ( ulong ) Runtime . PyObject_Hash ( obj ) ) . GetHashCode ( ) ;
913
913
}
914
914
915
915
You can’t perform that action at this time.
0 commit comments