This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Function Summons
Type: Stage: resolved
Components: Build Versions: Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: SH4Y4N, r.david.murray
Priority: normal Keywords:

Created on 2014-11-12 17:30 by SH4Y4N, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bug.py SH4Y4N, 2014-11-12 17:30 The Example For Function Summons Bug In Python...
Messages (2)
msg231084 - (view) Author: shayan (SH4Y4N) Date: 2014-11-12 17:30
Hi Everybody...
I'm SH4Y4N From Ashiyane Digital Security Team....
I found the Bug "Function Summons" From Python 2.7...
When You Try To  Summons some Function It's Regular...
But What Happend When You're Calling two Function Simultaneous?
Your 2 Functions Run But the thing is that It contain some Error...
That's Strange To Run Some Code Within Some Traceback Error....
I Could Take You SOme Tips To Prevent this Action...
=-=-=-=
def Ashiyane():
  print 'Ashiyane Digital Security Team'

def Shayan():
  print "Bug Hunter For Ever"

print Shayan()+Ashiyane()

Show :
Bug Hunter For Ever
Ashiyane Digital Security Team

Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    k()+h()
TypeError: unsupported operand type(s) for +: 'NoneType' and 'NoneType'
=-=-=-=
You See The result....
=-=-=-=
Special Tnx To : Angel--D3m0n , C4T , MR.CICILI
msg231089 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-11-12 17:43
I have to tell you, I almost closed this as spam due to the spamish prose styling of the text.

Please read the python tutorial, or email the python-tutors list if you want to learn more about why your code produced the results it did.
History
Date User Action Args
2022-04-11 14:58:10adminsetgithub: 67045
2014-11-12 17:43:32r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg231089

resolution: not a bug
stage: resolved
2014-11-12 17:30:32SH4Y4Ncreate