Antoine Pitrou
108d1b4a79
Issue #17703 : Fix a regression where an illegal use of Py_DECREF() after interpreter finalization can cause a crash.
2013-04-15 21:20:14 +02:00
Ezio Melotti
1b33206596
#13510 : clarify that f.readlines() is note necessary to iterate over a file. Patch by Dan Riti.
2013-04-15 19:08:31 +03:00
Eric V. Smith
12ec99d852
Issue #17728 : Specify default precision for float.format for presentation types e, f, and g.
2013-04-15 09:51:54 -04:00
R David Murray
6077339270
#17341 : Include name in re error message about invalid group name.
...
Patch by Jason Michalski.
2013-04-14 13:08:50 -04:00
Serhiy Storchaka
ff99e414c9
Issue #17221 : Resort Misc/NEWS.
2013-04-14 18:52:15 +03:00
Georg Brandl
95aa1726ec
Fix example ignoring ".svn" directories in compileall.
2013-04-14 12:02:43 +02:00
Georg Brandl
34f5dd0684
The Integral class does not contain implementations for the bit-shifting operations. (See #3056.)
2013-04-14 11:58:54 +02:00
Georg Brandl
e7fb7008ba
The im_class of unbound class methods is actually not the same as im_self.
2013-04-14 11:53:36 +02:00
Georg Brandl
d4c45a91b7
Clarify that the function *definition* creates the function and the binding in the module globals.
2013-04-14 11:47:46 +02:00
Georg Brandl
10bb21e4f9
Fix refcount leak in the reference counting example section (!).
2013-04-14 11:45:16 +02:00
Georg Brandl
ba58cbe754
Closes #13638 : document PyErr_SetFromErrnoWithFilenameObject,
...
PyErr_SetFromWindowsErrWithFilenameObject, and
PyErr_SetExcFromWindowsErrWithFilenameObject.
Note that PyErr_SetExcFromWindowsErrWithFilenameObjectAndSomeOtherParametersSoThatTheNameGetsSoLongThatNobodyIsEverGonnaUseThisStrangeFunctionForAnything is still undocumented.
2013-04-14 11:12:16 +02:00
Georg Brandl
2124dcd9fe
bind('') does not do the same as bind('localhost')
2013-04-14 10:59:04 +02:00
Georg Brandl
827372e46b
Closes #17661 : fix references to repr() going to module repr.
2013-04-14 10:36:03 +02:00
Georg Brandl
dc18cb963b
Closes #17726 : small clarification in design FAQ.
2013-04-14 10:31:06 +02:00
Georg Brandl
30a88facfe
Update using/mac documentation which was still on 2.5.
2013-04-14 10:17:35 +02:00
Georg Brandl
7a48a8b8c6
Clarify point in name mangling doc.
2013-04-14 10:13:42 +02:00
R David Murray
3a2b371f26
Reflow paragraph.
2013-04-13 14:37:42 -04:00
R David Murray
2fc97e6a2d
#2118 : clarify smtplib exception documentation.
2013-04-13 14:37:22 -04:00
Serhiy Storchaka
616f2fe28c
Issue #17016 : Get rid of possible pointer wraparounds and integer overflows
...
in the re module. Patch by Nickolai Zeldovich.
2013-04-13 21:15:10 +03:00
Ezio Melotti
c2a4f6b668
#17686 : fix broken link in Doc/using/unix.rst. Patch by Dan Riti.
2013-04-13 20:07:42 +03:00
Andrew Svetlov
524773020a
null merge
2013-04-13 18:07:15 +03:00
Andrew Svetlov
75f1fc27c3
Revert changes for #13355 by request from Raymond Hettinger
2013-04-13 18:05:44 +03:00
doko@ubuntu.com
66da7c573b
- Issue #17536 : Add to webbrowser's browser list: xdg-open, gvfs-open,
...
www-browser, x-www-browser, chromium browsers, iceweasel, iceape.
2013-04-13 17:05:11 +02:00
Mark Dickinson
f794b143d3
Issue #16447 : Fix potential segfault when setting __name__ on a class.
2013-04-13 15:19:05 +01:00
Serhiy Storchaka
6fa83f99af
Issue #17656 : Fix extraction of zip files with unicode member paths.
2013-04-13 12:28:17 +03:00
Andrew Svetlov
b6cdae3db4
Issue #13355 : Raise ValueError on random.triangular call with invalid params.
...
Initial patch by Yuriy Senko.
2013-04-12 23:39:33 +03:00
Ezio Melotti
0ba584c023
#6696 : add documentation for the Profile objects, and improve profile/cProfile docs. Patch by Tom Pinckney.
2013-04-12 16:22:24 +03:00
Roger Serwy
53dc4f0148
#17585 : Fixed IDLE regression. Now closes when using exit() or quit().
2013-04-11 19:13:21 -05:00
doko@ubuntu.com
77d8dbc1e8
- Issue #17086 : Search the include and library directories provided by the
...
compiler.
2013-04-11 00:19:55 +02:00
Ezio Melotti
3218f6511f
#17635 : fix wrong function name in multiprocessing docs.
2013-04-10 17:59:20 +03:00
doko@ubuntu.com
5ef41abc7c
- Issue #17682 : Add the _io module to Modules/Setup.dist (commented out).
2013-04-09 17:34:39 +02:00
Roger Serwy
789299f858
#17657 : Show full Tk version in IDLE's about dialog.
...
Patch by Todd Rovito.
2013-04-08 20:57:13 -05:00
Serhiy Storchaka
371432b961
Close #17666 : Fix reading gzip files with an extra field.
2013-04-08 22:33:55 +03:00
doko@ubuntu.com
6cb4343d0d
- Issue #13150 , #17512 : sysconfig no longer parses the Makefile and config.h
...
files when imported, instead doing it at build time. This makes importing
sysconfig faster and reduces Python startup time by 20%.
2013-04-08 21:20:09 +02:00
Kristjan Valur Jonsson
7e360b3963
Issue #17662 : fix socketmodule compilation with Setup.dist.
...
Patch contributed by Bohuslav "Slavek" Kabrda (bkabrda)
2013-04-08 16:03:30 +00:00
Roger Serwy
4e9a705887
#17613 : Prevent traceback when removing syntax colorizer in IDLE.
2013-04-07 12:41:16 -05:00
Roger Serwy
231a8fd22d
#1207589 : Backwards-compatibility patch for right-click menu in IDLE.
2013-04-07 12:15:52 -05:00
Benjamin Peterson
74001fad7d
list slotdefs in offset order rather than sorting them ( closes #17610 )
...
This means we can remove our usage of qsort() than relied on undefined behavior.
Backport by Zbigniew Halas.
2013-04-07 09:52:59 -04:00
Andrew Svetlov
aff9ceff3c
Update argparse docs to follow order of ArgumentParser() arguments.
2013-04-07 14:45:37 +03:00
Roger Serwy
75b249c914
#16887 : IDLE now accepts Cancel in tabify/untabify dialog box.
2013-04-06 20:26:53 -05:00
Roger Serwy
08759c7d2a
move idle news entries to its section
2013-04-06 20:21:21 -05:00
Serhiy Storchaka
6c467a41bc
Revert a premature patch for issue #14010 (changeset d17d10c84d27).
2013-04-06 22:51:29 +03:00
Antoine Pitrou
022db598ac
Issue #17645 : convert an assert() into a proper exception in _Py_Mangle().
2013-04-06 21:21:04 +02:00
Benjamin Peterson
0e7df43128
merge heads
2013-04-06 15:19:11 -04:00
Benjamin Peterson
89e2aed9cc
move idle news to its own section
2013-04-06 15:19:04 -04:00
Serhiy Storchaka
bb84565cdb
Issue #14010 : Fix a crash when iterating or deleting deeply nested filters
...
in itertools module (i.e. itertools.izip(), itertools.chain(), etc).
2013-04-06 22:04:10 +03:00
Andrew Svetlov
9c6eb266f5
Change wording as Eli Bendersky suggests.
2013-04-06 18:54:19 +03:00
Benjamin Peterson
5419e493af
start cracking on 2.7.5
2013-04-06 10:17:54 -04:00
Benjamin Peterson
9db034161e
merge 2.7.4 release branch
2013-04-06 10:00:24 -04:00
Benjamin Peterson
7bcb2d573b
Added tag v2.7.4 for changeset 026ee0057e2d
2013-04-06 09:59:25 -04:00