Skip to content

Commit 3ec01fe

Browse files
Fix bug on garbage collection of objects that have not been sent to python.
1 parent 222557a commit 3ec01fe

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

src/PythonBridge-Pharo/PBPharoUiManager.class.st

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Class {
77
{ #category : #'as yet unclassified' }
88
PBPharoUiManager >> notify: aString [
99
Transcript show: aString asString.
10-
super notify: aString asString.
1110
]
1211

1312
{ #category : #hooks }

src/PythonBridge/PBObject.class.st

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ PBObject >> basicCreateObjectExpr: anExpression [
6767
pythonVariable := varName.
6868
self application commandFactory << (
6969
self registerIdPyExpression: anExpression).
70-
self registerObject
71-
70+
self registerObject.
71+
self application commandFactory send.
7272
]
7373

7474
{ #category : #'as yet unclassified' }

src/PythonBridge/PBObjectFinalizationTest.class.st

+9
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ PBObjectFinalizationTest >> tearDown [
2525
super tearDown
2626
]
2727

28+
{ #category : #tests }
29+
PBObjectFinalizationTest >> testCreateObjectAndGcItBeforeSending [
30+
"Bug when the object is garbage collected before sending the command to python, this trigger the gc in Python of an object that hasnt yer been created nor registered. Now we fixed this enforcing the message send in the basicCreateObject, though another way is to registering the object to the command with a hard-reference."
31+
PBObject new basicCreateObjectExpr: 5.5.
32+
Smalltalk garbageCollect.
33+
Smalltalk garbageCollect.
34+
self assert: true
35+
]
36+
2837
{ #category : #tests }
2938
PBObjectFinalizationTest >> testGCSimpleObj [
3039
| obj id |

0 commit comments

Comments
 (0)