Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn for raise with three compnents #14

Merged
merged 1 commit into from
Nov 25, 2022

Conversation

nanjekyejoannah
Copy link

This makes sense at the AST hence isolated from the other exception PR

@nanjekyejoannah
Copy link
Author

bors try

bors bot added a commit that referenced this pull request Nov 24, 2022
@bors
Copy link

bors bot commented Nov 24, 2022

try

Build succeeded:

@ltratt
Copy link
Member

ltratt commented Nov 25, 2022

bors r+

@bors
Copy link

bors bot commented Nov 25, 2022

Build succeeded:

@bors bors bot merged commit 48f8eb8 into softdevteam:migration Nov 25, 2022
bors bot added a commit that referenced this pull request Nov 29, 2022
16: Warn for specific thread module methods r=ltratt a=nanjekyejoannah

Dont merge until #13  and  #14 are merged, some helper code cuts across.

This replaces #15 

Threading module Notes

Python 2:

```
>>> from thread import get_ident
>>> from threading import get_ident
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name get_ident
>>> import threading
>>> from threading import _get_ident
>>>
```

Python 3:

```
>>> from threading import get_ident
>>> from thread import get_ident
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'thread'
>
```

**Note:**

There is no neutral way of porting

Co-authored-by: Joannah Nanjekye <jnanjekye@python.org>
bors bot added a commit that referenced this pull request Feb 16, 2023
24: Warn for exception: move warning to ceval r=ltratt a=nanjekyejoannah

This replaces the old PR: #12
Moved the warning to ceval.

I removed the three component warning because it was committed in an earlier PR here: #14

Co-authored-by: Joannah Nanjekye <jnanjeky@unb.ca>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants