Raymond Hettinger
6778fa9b2a
Reference the release schedule
2010-12-21 20:09:55 +00:00
Raymond Hettinger
8ebe27f300
Deprecate assertDictContainsSubset()
2010-12-21 19:24:26 +00:00
Antoine Pitrou
f259076790
Suggest sys.maxsize as a reliable way to know whether the interpreter is 64-bit.
...
(part of #10735 )
2010-12-21 18:49:01 +00:00
R. David Murray
e0436bcb24
Make test_compileall more robust by using -S to keep sys.path minimized.
...
Try this again, hopefully the right way this time.
Arfrever Taifersar Arahesis reported that test_compileall failed during Gentoo
install because it was tyring to write .pyc files to a read-only system
directory during test_no_args_compiles_path. Having the tests call python
with -S should eliminate the system directories from the path.
2010-12-21 18:24:33 +00:00
R. David Murray
73a559d0c9
Fix the change made for issue 1243654.
...
Surprisingly, it turns out there was no test that exercised this code path.
2010-12-21 18:07:59 +00:00
R. David Murray
92812028f2
Revert incorrect patch made at the wrong time.
2010-12-20 19:04:51 +00:00
R. David Murray
bf9004483d
Make test_compileall more robust by using -S to keep sys.path minimized.
...
Arfrever Taifersar Arahesis reported that test_compileall failed during Gentoo
install because it was tyring to write .pyc files to a read-only system
directory during test_no_args_compiles_path. Having subprocess call python
with -S should eliminate the system directories from the path.
2010-12-20 18:08:59 +00:00
Vinay Sajip
01094e1fe4
Logging documentation updates.
2010-12-19 13:41:26 +00:00
Vinay Sajip
c63619bcf2
Logging documentation reorganised.
2010-12-19 12:56:57 +00:00
Georg Brandl
7ca6d90681
Tag 3.2 beta 2.
2010-12-19 12:37:34 +00:00
Georg Brandl
09a7df8301
#3243 follow-up: remove debugging print and fix docs; data is a bytes object.
2010-12-19 12:33:52 +00:00
Senthil Kumaran
7bc0d872dd
Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji Li and Chris AtLee.
2010-12-19 10:49:52 +00:00
Georg Brandl
8a60e94802
Bump to 3.2b2.
2010-12-19 10:30:28 +00:00
Georg Brandl
c88435023c
Fix markup error and update suspicious file.
2010-12-19 10:28:46 +00:00
Georg Brandl
3de338f47e
Update pydoc topics.
2010-12-19 10:25:28 +00:00
Georg Brandl
cf8a209ab7
Temporarily skip test failing with newer ttk.
2010-12-19 10:17:46 +00:00
Georg Brandl
aedd2899c2
#6075 : make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by Kevin Walzer and Ned Deily.
2010-12-19 10:10:32 +00:00
Vinay Sajip
7504302875
Logging documentation update.
2010-12-19 06:02:31 +00:00
Michael Foord
cca5be2e4c
Improvement to fix for issue 9926 to allow TestResult to be reused.
2010-12-19 04:07:28 +00:00
Michael Foord
f100dbd600
Fix minor issue in implementation of issue 10470.
2010-12-19 03:59:10 +00:00
Michael Foord
b3468f79ef
Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run
2010-12-19 03:19:47 +00:00
Ezio Melotti
addc6f5a21
#10573 : use actual/expected consistently in unittest methods. The order of the args of assertCountEqual is also changed.
2010-12-18 20:00:04 +00:00
R. David Murray
63563cdf9d
#9286 : Fix the rfc822 parser to preserve whitespace in address local part.
...
Such addresses are not RFC compliant except under the 'obsolete syntax'
rules, but before this fix the whitespace was dropped from the input,
concatenating the pieces. That breaks one of the principles of the
email package, that of preserving the input as much as possible.
It also denies the application program the opportunity to apply its
own heuristics to interpretation of such non-compliant addresses.
It is possible users of the email package were depending on the local
part always being a single token, so this fix will not be backported.
2010-12-18 18:25:38 +00:00
Antoine Pitrou
2b37ce7f30
NEWS entry for r87373
2010-12-18 17:59:18 +00:00
Georg Brandl
0bdfbfa276
#10723 : add missing builtin exceptions.
2010-12-18 17:51:28 +00:00
Ezio Melotti
3044fa77a5
Use lowercase true/false in assertTrue/assertFalse messages.
2010-12-18 17:31:58 +00:00
R. David Murray
b68a7bc70c
#10404 : Use ctl-button-1 for context menus on OSX Idle.
...
This provides access to the context menus where they previously could
not be accessed due to the way OSX Tk binds buttons. It also
improves platform consistency.
Patch by Ned Deily.
2010-12-18 17:19:10 +00:00
Senthil Kumaran
5466bf1c94
Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by Antoine Pitrou
2010-12-18 16:55:23 +00:00
R. David Murray
32e1771daf
#10728 : the default for printing help is sys.stdout, not stderr.
2010-12-18 16:39:06 +00:00
Georg Brandl
77570e2d0e
Fix typo.
2010-12-18 16:21:58 +00:00
Ezio Melotti
ac53ab64a6
#5587 : add a repr to dict_proxy objects. Patch by David Stanek and Daniel Urban.
2010-12-18 14:59:43 +00:00
Antoine Pitrou
197c9c945e
Make this a note again.
2010-12-18 12:33:06 +00:00
Georg Brandl
eebb252e6b
Use kbd role.
2010-12-18 12:01:15 +00:00
Georg Brandl
5d53fdd1ac
Typo fix.
2010-12-18 11:58:12 +00:00
Georg Brandl
101234bc83
Add attribution.
2010-12-18 11:53:25 +00:00
Raymond Hettinger
2b8861fa70
Nits.
2010-12-18 11:20:52 +00:00
Steven Bethard
fd311a712d
Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg for beta2 on the tracker.
2010-12-18 11:19:23 +00:00
Raymond Hettinger
04129748ae
Minor markup and wording fixups.
2010-12-18 10:57:50 +00:00
Raymond Hettinger
d73be67c3f
Minor wordsmithing and markup fix-ups.
2010-12-18 10:48:26 +00:00
Raymond Hettinger
3094ed8c69
Enhance argparse example to show aliases.
2010-12-18 09:41:32 +00:00
R. David Murray
52d1b4e62f
#9907 : call rl_initialize early when using editline on OSX
...
editline rl_initialize apparently discards any mappings done before it
is called, which makes tab revert to file completion instead of inserting
a tab. So now on OSX we call rl_initialize first if we are using
readline, and then re-read the users .editrc (if any) afterward so they
can still override our defaults.
Patch by Ned Deily, modified by Ronald Oussoren.
2010-12-18 03:48:32 +00:00
Raymond Hettinger
c539a2a88e
Add link to a sample solution to a common problem.
2010-12-17 23:31:30 +00:00
Daniel Stutzbach
c5895dcc15
Fix typo
2010-12-17 22:28:07 +00:00
Victor Stinner
7bbc855edb
update .gitignore using .hgignore
2010-12-17 22:24:30 +00:00
Łukasz Langa
79a06ed567
fix for an embarrassing autoformatting SNAFU. Thanks for your alertness, Antoine.
2010-12-17 22:05:46 +00:00
Łukasz Langa
2b38b6cee8
configparser hype coming up!
2010-12-17 21:57:32 +00:00
Łukasz Langa
71b37a5d6d
100% test coverage, better mapping protocol compatibility, some minor bugfixes
2010-12-17 21:56:32 +00:00
Martin v. Löwis
0e74cacdff
Upgrade to sqlite3 3.7.4.
2010-12-17 21:04:09 +00:00
Daniel Stutzbach
2a1e3e67b3
Issue2690: Update docs to reflect the change made by issue2690.
2010-12-17 20:53:03 +00:00
Martin v. Löwis
910a4edbcd
Upgrade Tcl/Tk to 8.5.9.
2010-12-17 20:43:27 +00:00