Benjamin Peterson
|
48ad7c0b01
|
use __qualname__ to compute bound method repr (closes #21389)
Patch from Steven Barker.
|
12 years ago |
Senthil Kumaran
|
2b7ccbda90
|
merge from 3.4
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
|
12 years ago |
Senthil Kumaran
|
783737625d
|
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
|
12 years ago |
Terry Jan Reedy
|
f2e500c133
|
Merge with 3.4
|
12 years ago |
Terry Jan Reedy
|
c1a723a0b3
|
Idle ColorDelegator: remove special case code for 'as' in import statements.
'As' became a full keyword when with statements were added in 2.5/2.6.
|
12 years ago |
Benjamin Peterson
|
344ff4ab2b
|
allow recursion depth to be specified (closes #19628)
Patch from Claudiu Popa.
|
12 years ago |
Serhiy Storchaka
|
54b3b3fb2c
|
Fixed typo.
|
12 years ago |
Serhiy Storchaka
|
996c3deafe
|
Fixed typo.
|
12 years ago |
Serhiy Storchaka
|
ef1a79799f
|
Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.
|
12 years ago |
Serhiy Storchaka
|
76b47655ff
|
Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.
|
12 years ago |
Serhiy Storchaka
|
79c27c3319
|
Clean up test_user_command.
|
12 years ago |
Serhiy Storchaka
|
d6ec309c36
|
Clean up test_user_command.
|
12 years ago |
Benjamin Peterson
|
c5847414f9
|
merge 3.4 (closes #22200)
|
12 years ago |
Benjamin Peterson
|
0c56bb97ea
|
remove 2.2 and 2.6 compat code (closes #22200)
Patch from Thomas Kluyver.
|
12 years ago |
Victor Stinner
|
049e509a9f
|
Issue #22207: Fix "comparison between signed and unsigned integers" warning in
test checking for integer overflow on Py_ssize_t type: cast explicitly to
size_t.
|
12 years ago |
Victor Stinner
|
daca3d7e9b
|
Issue #22206: Using pthread, PyThread_create_key() now sets errno to ENOMEM and
returns -1 (error) on integer overflow.
|
12 years ago |
Victor Stinner
|
7270b7f1aa
|
_pickle: Optimize raw_unicode_escape(), use directly a bytes object, don't use
a temporary bytearray object.
|
12 years ago |
Victor Stinner
|
88d146b7b9
|
Optimize PyBytes_FromObject(): only overallocate when size=0 to not get the
empty string singleton
|
12 years ago |
Victor Stinner
|
cfcde8ca40
|
Issue #22218: Fix "comparison between signed and unsigned integers" warning in
Modules/_sqlite/cursor.c.
|
12 years ago |
Victor Stinner
|
f13c46cc69
|
Issue #22218: Fix "comparison between signed and unsigned integers" warnings in
Modules/_pickle.c.
|
12 years ago |
Victor Stinner
|
1a62a680d6
|
Issue #22218: Fix "comparison between signed and unsigned integers" warnings in
socketmodule.c.
|
12 years ago |
Serhiy Storchaka
|
c399e85207
|
Issue #22165: Fixed test_undecodable_filename on Mac OS.
|
12 years ago |
Serhiy Storchaka
|
d9e9528818
|
Issue #22165: Fixed test_undecodable_filename on Mac OS.
|
12 years ago |
Serhiy Storchaka
|
0879001f00
|
Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
|
12 years ago |
Serhiy Storchaka
|
87bbf257ef
|
Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
|
12 years ago |
Serhiy Storchaka
|
95d5c9d5ff
|
Issue #22201: Command-line interface of the zipfile module now correctly
extracts ZIP files with directory entries. Patch by Ryan Wilson.
|
12 years ago |
Serhiy Storchaka
|
97f17ff840
|
Issue #22201: Command-line interface of the zipfile module now correctly
extracts ZIP files with directory entries. Patch by Ryan Wilson.
|
12 years ago |
Serhiy Storchaka
|
fbe912b756
|
Issue #22165: Fixed test_undecodable_filename on non-UTF-8 locales.
|
12 years ago |
Serhiy Storchaka
|
a64ce5d744
|
Issue #22165: Fixed test_undecodable_filename on non-UTF-8 locales.
|
12 years ago |
Serhiy Storchaka
|
41a08e557a
|
Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names.
|
12 years ago |
Serhiy Storchaka
|
cb5bc408ad
|
Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names.
|
12 years ago |
Nick Coghlan
|
f9e227e5a9
|
Issue #20184: Add signature introspection for 30 of the builtins
Also adds a test to test_inspect to track progress on builtin
introspection support, to ensure it doesn't regress in the future.
|
12 years ago |
Nick Coghlan
|
eed671910f
|
Clarify ord() and chr() documentation
|
12 years ago |
Senthil Kumaran
|
e2953e5146
|
merge 3.4; backout changeset 3435c5865cfc due to buildbot failures. Ref #8797
|
12 years ago |
Senthil Kumaran
|
402df0975c
|
backout changeset 3435c5865cfc due to buildbot failures. Ref #8797
|
12 years ago |
Victor Stinner
|
52aee85613
|
Issue #22156: simplify _tracemalloc.c, use an int for the MAX_NFRAME constant
|
12 years ago |
Victor Stinner
|
69c1a6651d
|
(Merge 3.4) Closes #22188: test_gdb now runs gdb with -nx: "Do not execute
commands from any .gdbinit initialization files".
|
12 years ago |
Victor Stinner
|
7869a4e03a
|
Closes #22188: test_gdb now runs gdb with -nx: "Do not execute commands from
any .gdbinit initialization files".
|
12 years ago |
Victor Stinner
|
cddaa1bd62
|
(Merge 3.4) Closes #22205: sys._debugmallocstats is a cpython specific feature,
so test_debugmallocstats should be marked as such. Patch written by Martin
Matusiak.
|
12 years ago |
Victor Stinner
|
8e7966b00e
|
Closes #22205: sys._debugmallocstats is a cpython specific feature, so
test_debugmallocstats should be marked as such. Patch written by Martin
Matusiak.
|
12 years ago |
Senthil Kumaran
|
39e6c07beb
|
merge from 3.4
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
|
12 years ago |
Senthil Kumaran
|
b2e3a939bf
|
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
|
12 years ago |
Victor Stinner
|
706768c687
|
Issue #22156: Fix some "comparison between signed and unsigned integers"
compiler warnings in the Modules/ subdirectory.
|
12 years ago |
Victor Stinner
|
12174a5dca
|
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
warnings in the Objects/ subdirectory.
PyType_FromSpecWithBases() and PyType_FromSpec() now reject explicitly negative
slot identifiers.
|
12 years ago |
Victor Stinner
|
98ea54c35c
|
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
warnings in the Python/ subdirectory.
|
12 years ago |
Terry Jan Reedy
|
eae94706a3
|
Merge with 3.4
|
12 years ago |
Terry Jan Reedy
|
f819ef74da
|
Issue #22065: Update turtledemo menu creation; don't use obsolete Menubutton.
|
12 years ago |
Terry Jan Reedy
|
f3284ad098
|
Null merge.
|
12 years ago |
Terry Jan Reedy
|
011b55b8d7
|
#22053: actually remove .txt files from 3.4.
|
12 years ago |
Terry Jan Reedy
|
c5212dd5d3
|
Issue #22065: Try the delete demohelp.txt part again.
|
12 years ago |