[issue26500] Document of star operator missing. It must be documented for better understanding.

2016-03-07 Thread Jaivish Kothari

New submission from Jaivish Kothari:

Star operator in python for unpacking could be documented for better 
understanding.

--
assignee: docs@python
components: Documentation
messages: 261288
nosy: docs@python, janonymous
priority: normal
severity: normal
status: open
title: Document of star operator missing. It must be documented for better 
understanding.
versions: Python 2.7, Python 3.3, Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26500>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24443] Link for clear and wait missing in EventObjects

2015-06-13 Thread Jaivish Kothari

New submission from Jaivish Kothari:

https://docs.python.org/2/library/threading.html#threading.Event.set

links missing for wait and clear .
set() is linked though.

Line: 

An event object manages an internal flag that can be set to true with the set() 
method and reset to false with the clear() method. The wait() method blocks 
until the flag is true.



--
assignee: docs@python
components: Documentation
files: Fix_link.patch
keywords: patch
messages: 245294
nosy: berker.peksag, docs@python, georg.brandl, janonymous, janonymous, 
tim.golden, willingc
priority: normal
severity: normal
status: open
title: Link for clear and wait missing in EventObjects
type: enhancement
versions: Python 2.7
Added file: http://bugs.python.org/file39702/Fix_link.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24443
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24443] Link for clear and wait missing in EventObjects

2015-06-13 Thread Jaivish Kothari

Jaivish Kothari added the comment:

My Pleasure sir :)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24443
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24005] Documentation Error: Extra line Break

2015-04-30 Thread Jaivish Kothari

Jaivish Kothari added the comment:

Thank you Tim.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24005
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24005] Documentation Error: Extra line Break

2015-04-29 Thread Jaivish Kothari

Jaivish Kothari added the comment:

Thanks for support . I agree it is not a bug at all but just as Tim said it 
would be easy to copy paste code directly to interpreter with such changes. 
This was my first contribution in python though not accepted , it is ok :) . 
I'll try to contribute more towards it .Thanks for commenting . Could you guys 
suggest some issues i could work on as a beginner :)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24005
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24005] Documentation Error: Extra line Break

2015-04-19 Thread Jaivish Kothari

Jaivish Kothari added the comment:

Please find the attached patch for review.

--
keywords: +patch
resolution:  - fixed
Added file: http://bugs.python.org/file39118/doc_patch.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24005
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24005] Documentation Error: Extra line Break

2015-04-19 Thread Jaivish Kothari

New submission from Jaivish Kothari:

https://docs.python.org/2/whatsnew/2.4.html?highlight=decorators#pep-318-decorators-for-functions-and-methods
'''
def require_int (func):
def wrapper (arg):
assert isinstance(arg, int)
return func(arg)

return wrapper
'''

New line is ommited before return wrapper 

'''
def require_int (func):
def wrapper (arg):
assert isinstance(arg, int)
return func(arg)
return wrapper

'''

--
assignee: docs@python
components: Documentation
messages: 241508
nosy: docs@python, georg.brandl, janonymous
priority: normal
severity: normal
status: open
title: Documentation Error: Extra line Break
type: enhancement
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24005
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com