Serhiy Storchaka
ccd047ea4b
Removed unused imports.
10 years ago
Serhiy Storchaka
a6f26c1d34
Remove more unused imports in tests.
10 years ago
Serhiy Storchaka
fd2839e1de
Merge 3.5
10 years ago
Serhiy Storchaka
5b6f0aa71c
Remove duplicated tests.
There were duplicated methods with the same name and body.
10 years ago
Serhiy Storchaka
e4fbb0206d
Remove unused support.run_unittest imports.
It is not needed since tests use unittest.main().
10 years ago
Victor Stinner
8153ac8f00
Issue #26249 : Mention PyMem_Malloc() change in What's New in Python 3.6 in the
Optimizations section.
10 years ago
Serhiy Storchaka
e437a10d15
Issue #23277 : Remove unused imports in tests.
10 years ago
Serhiy Storchaka
597d15afe4
Issue #23277 : Remove unused support.run_unittest import.
10 years ago
Serhiy Storchaka
c7f44aa99a
Issue #23277 : Remove more unused sys and os imports.
10 years ago
Serhiy Storchaka
18a8affc8e
Issue #26801 : shutil.get_terminal_size() now handles the case of stdout is
reopened on Windows. Added tests for fallbacks.
10 years ago
Serhiy Storchaka
d30829def2
Issue #26801 : shutil.get_terminal_size() now handles the case of stdout is
reopened on Windows. Added tests for fallbacks.
10 years ago
Martin Panter
a497774b71
Issue #24911 : Merge socket context manager doc from 3.5
10 years ago
Berker Peksag
1e8ee9b380
Issue #23277 : Remove unused sys and os imports
Patch by Jon Dufresne.
10 years ago
Martin Panter
e37fc18b3c
Issue #24911 : All socket objects are context managers; update examples
10 years ago
Martin Panter
37917369d5
Issue #23806 : Merge susp-ignored.csv from 3.5
10 years ago
Martin Panter
887bc96e2e
Issue #23806 : Update susp-ignored.csv
10 years ago
Berker Peksag
e50d8465ab
Issue #26041 : Remove "will be removed in Python 3.7" from description messages
We will keep platform.dist() and platform.linux_distribution() to make porting
from Python 2 easier.
Patch by Kumaripaba Miyurusara Athukorala.
10 years ago
Berker Peksag
8d8221f0d6
Issue #26041 : Remove "will be removed in Python 3.7" from description messages
We will keep platform.dist() and platform.linux_distribution() to make porting
from Python 2 easier.
Patch by Kumaripaba Miyurusara Athukorala.
10 years ago
Berker Peksag
8d9594df66
Issue #19731 : Update copyright year in docs.p.o footer
See https://mail.python.org/pipermail/python-legal-sig/2013-November/000059.html
for details.
Patch by Antoine Pitrou.
10 years ago
Berker Peksag
2ec1bee1b3
Issue #19731 : Update copyright year in docs.p.o footer
See https://mail.python.org/pipermail/python-legal-sig/2013-November/000059.html
for details.
Patch by Antoine Pitrou.
10 years ago
Berker Peksag
c61d80cc83
Issue #18572 : Remove redundant note about surrogates in string escape doc
10 years ago
Berker Peksag
4f35d79d65
Issue #18572 : Remove redundant note about surrogates in string escape doc
10 years ago
Berker Peksag
78de0b1047
Issue #18353 : Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst
Patch by Corey Brune.
10 years ago
Berker Peksag
544ae59b8e
Issue #18353 : Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst
Patch by Corey Brune.
10 years ago
Berker Peksag
ae7e8c44ac
Issue #21382 : Clarify signal.signal() documentation on Windows
All signal.SIG* constants may not be defined on Windows so a call like
signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1))
will raise an AttributeError.
10 years ago
Berker Peksag
77e543c6cd
Issue #21382 : Clarify signal.signal() documentation on Windows
All signal.SIG* constants may not be defined on Windows so a call like
signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1))
will raise an AttributeError.
10 years ago
Berker Peksag
ce18d8c2f4
Issue #26089 : Remove duplicate field 'license' from DistributionMetadata
It was renamed to 'license' in 178d19cff163.
Patch by Augustin Laville.
10 years ago
Berker Peksag
557326eed3
Issue #20112 : Improve BaseHTTPRequestHandler.error_message_format documentation
* Explain how 'error_message_format' is used by 'send_error' method
* Mention that 'responses' is used by 'send_response_only' and 'send_error' methods
* Replace 'class variables' with 'attributes'
Initial patch by Anastasia Filatova.
10 years ago
Berker Peksag
0269828320
Issue #20112 : Improve BaseHTTPRequestHandler.error_message_format documentation
* Explain how 'error_message_format' is used by 'send_error' method
* Mention that 'responses' is used by 'send_response_only' and 'send_error' methods
* Replace 'class variables' with 'attributes'
Initial patch by Anastasia Filatova.
10 years ago
Serhiy Storchaka
745145a7da
Issue #26822 : itemgetter, attrgetter and methodcaller objects no longer
silently ignore keyword arguments.
10 years ago
Serhiy Storchaka
c2a2a751cf
Issue #26822 : itemgetter, attrgetter and methodcaller objects no longer
silently ignore keyword arguments.
10 years ago
Benjamin Peterson
9046df0659
merge 3.5 ( #26827 )
10 years ago
Benjamin Peterson
95b5f0ad7e
fix python 3 mod init function declaration ( closes #26827 )
10 years ago
Serhiy Storchaka
8b9eefc363
Issue #26733 : Disassembling a class now disassembles class and static methods.
Patch by Xiang Zhang.
10 years ago
Serhiy Storchaka
585c93daea
Issue #26733 : Disassembling a class now disassembles class and static methods.
Patch by Xiang Zhang.
10 years ago
Senthil Kumaran
3973d27702
merge 3.5
Document no_proxy environment variable in python 3.x #issue23806
10 years ago
Senthil Kumaran
21ce717eaf
Issue23806 - Document the no_proxy environment variable in Python 3 docs.
10 years ago
Martin Panter
da28494d0a
Issue #22359 : Merge cross-compilation fix from 3.5
10 years ago
Martin Panter
1046d5c653
Issue #22359 : Disable running cross-compiled _freeze_importlib and pgen
Patch by Xavier de Gaye.
10 years ago
Victor Stinner
15932593ba
Issue #26249 : Try test_capi on Windows
10 years ago
Victor Stinner
f5c4b99034
PyMem_Malloc() now uses the fast pymalloc allocator
Issue #26249 : PyMem_Malloc() allocator family now uses the pymalloc allocator
rather than system malloc(). Applications calling PyMem_Malloc() without
holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to
validate the usage of memory allocators in your application.
10 years ago
Senthil Kumaran
5439fc4901
[minor] Doc fix in old python doc.
10 years ago
Victor Stinner
af1baabfce
Merge 3.5
10 years ago
Victor Stinner
19620c57d7
gdb/libpython.py: inline _type_void_ptr()
The function was only called in _sizeof_void_p()
10 years ago
Victor Stinner
b4faa8ef93
Merge 3.5
10 years ago
Victor Stinner
d7a71224d8
Issue #26799 : Fix typo in Misc/NEWS
10 years ago
Victor Stinner
c88390f02d
Merge 3.5: Issue #26799
10 years ago
Victor Stinner
4e75ca87e3
python-gdb.py: get C types at runtime
Issue #26799 : Fix python-gdb.py: don't get once C types when the Python code
is loaded, but get C types on demande. The C types can change if
python-gdb.py is loaded before the Python executable.
Patch written by Thomas Ilsche.
10 years ago
Victor Stinner
a2bf3060d0
Issue #21668 : Add also Chi Hsuan Yen to Misc/ACKS
10 years ago
Victor Stinner
61f68dbd17
Issue #21668 : Fix author of the patch.
Sorry, it was hard to retrieve the original author of the patch in this issue
with a long history and many authors.
10 years ago