Staging
v0.5.1
https://github.com/python/cpython
Revision b64334cb93d0ddbb551c8cd712942bab2fc72772 authored by Mario Corchero on 06 December 2019, 14:27:38 UTC, committed by Miss Islington (bot) on 06 December 2019, 14:27:38 UTC


Break cycle generated when saving an exception in socket.py, codeop.py and dyld.py as they keep alive not only the exception but user objects through the ``__traceback__`` attribute.


https://bugs.python.org/issue36820



Automerge-Triggered-By: @pablogsal
1 parent efefe25
Raw File
Tip revision: b64334cb93d0ddbb551c8cd712942bab2fc72772 authored by Mario Corchero on 06 December 2019, 14:27:38 UTC
bpo-36820: Break unnecessary cycle in socket.py, codeop.py and dyld.py (GH-13135)
Tip revision: b64334c
macos-steps.yml
steps:
- checkout: self
  clean: true
  fetchDepth: 5

- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
  displayName: 'Configure CPython (debug)'

- script: make -s -j4
  displayName: 'Build CPython'

- script: make pythoninfo
  displayName: 'Display build info'

- script: make buildbottest TESTOPTS="-j4 -uall,-cpu --junit-xml=$(build.binariesDirectory)/test-results.xml"
  displayName: 'Tests'
  continueOnError: true
  timeoutInMinutes: 30

- task: PublishTestResults@2
  displayName: 'Publish Test Results'
  inputs:
    testResultsFiles: '$(build.binariesDirectory)/test-results.xml'
    mergeTestResults: true
    testRunTitle: $(testRunTitle)
    platform: $(testRunPlatform)
  condition: succeededOrFailed()
back to top