How to capture before change in change stream from python side?

From python how to capture before change also along with after change in change stream?
currently i have as below to capture after change in python

             with collection.watch() as stream:
                   change = stream.try_next()

Please advise.