summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Updating documentation and adding docstrings to ↵Michael Foord2010-05-081-3/+3
| | | | unittest.TestCase.assertRegexpMatches and assertNotRegexpMatches. Issue 8038.
* Write summary of the 2.7 release; rewrite the future section some more;Andrew M. Kuchling2010-05-081-15/+39
| | | | | | | | mention PYTHONWARNINGS env. var; tweak some examples for readability. And with this commit, the "What's New" is done... except for a complete read-through to polish the text, and fixing any reported errors, but those tasks can easily wait until after beta2.
* Documenting test discovery from package name and potential problems with ↵Michael Foord2010-05-081-0/+21
| | | | test discovery importing tests from the wrong location. Issue 7780 and issue 8547.
* Markup fixesAndrew M. Kuchling2010-05-081-2/+2
|
* Add logging.dictConfig example; give up on writing a Ttk exampleAndrew M. Kuchling2010-05-081-4/+58
|
* Get accents correctAndrew M. Kuchling2010-05-081-10/+8
|
* Add two itemsAndrew M. Kuchling2010-05-081-4/+75
|
* Re-word textAndrew M. Kuchling2010-05-071-13/+23
|
* Fix some markup and a class name. Also, wrap a long line.Antoine Pitrou2010-05-071-6/+8
|
* Add a new section on the development plan; add an itemAndrew M. Kuchling2010-05-071-15/+64
|
* ensure that availability information is on its own line at the end of the ↵Benjamin Peterson2010-05-061-133/+341
| | | | function docs
* Availability gets its own lineBenjamin Peterson2010-05-061-4/+13
|
* Change section title; point to unittest2Andrew M. Kuchling2010-05-061-2/+5
|
* Add 2 items; record ideas for two initial sections; clarify wordingAndrew M. Kuchling2010-05-061-5/+20
|
* Describe ElementTree 1.3; rearrange new-module sections; describe dict views ↵Andrew M. Kuchling2010-05-061-72/+165
| | | | as sets; small edits and items
* Use anonymous hyperlinksAndrew M. Kuchling2010-05-061-4/+4
|
* Add various itemsAndrew M. Kuchling2010-05-061-7/+39
|
* Reword paragraph; fix filename, which should be pyconfig.hAndrew M. Kuchling2010-05-061-3/+3
|
* Issue 8628: fix incorrect documentation for numbers.Complex.imag.Mark Dickinson2010-05-051-2/+2
|
* In a number of places code still reversRonald Oussoren2010-05-051-1/+1
| | | | | | | | | to "sys.platform == 'mac'" and that is dead code because it refers to a platform that is no longer supported (and hasn't been supported for several releases). Fixes issue #7908 for the trunk.
* Add some more items; the urlparse change is added twiceAndrew M. Kuchling2010-05-041-1/+60
|
* wbits negative was documented SEVEN years agoJesus Cea2010-05-031-3/+1
|
* Fix attribution. Travis didn't do much and he did a bad work.Antoine Pitrou2010-05-011-1/+1
| | | | (yes, this is a sensitive subject, sorry)
* Describe memoryviewAndrew M. Kuchling2010-05-011-1/+53
|
* Minor grammar fixAndrew M. Kuchling2010-05-011-1/+1
|
* Add various itemsAndrew M. Kuchling2010-05-011-5/+30
|
* Add itemAndrew M. Kuchling2010-04-301-0/+10
|
* Minor grammar re-wordingAndrew M. Kuchling2010-04-301-2/+2
|
* Add various items; rearrange unittest section a bitAndrew M. Kuchling2010-04-301-51/+87
|
* Markup fix; clarify by adding 'in that order'Andrew M. Kuchling2010-04-301-2/+3
|
* Fix typosAndrew M. Kuchling2010-04-302-2/+2
|
* Reword paragraph to make its meaning clearer.Andrew M. Kuchling2010-04-301-7/+10
| | | | | | Antoine Pitrou: is my version of the paragraph still correct? R. David Murray: is this more understandable than the previous version?
* Fixes issue 8543 (asynchat documentation issues)Giampaolo Rodolà2010-04-291-91/+10
|
* Fixing the Broken links of mechanize library.Senthil Kumaran2010-04-291-3/+2
|
* Group the Windows entries in getfilesystemencoding doc, move the win 9x one ↵Ezio Melotti2010-04-291-7/+9
| | | | at the bottom of the list and fix some markup.
* update pypy urlBenjamin Peterson2010-04-291-1/+1
|
* update pypy descriptionBenjamin Peterson2010-04-291-6/+6
|
* Add various unittest itemsAndrew M. Kuchling2010-04-291-16/+40
|
* Fix doubled 'the'.Andrew M. Kuchling2010-04-291-16/+16
| | | | | | | Markup fixes to use :exc:, :option: in a few places. (Glitch: unittest.main's -c ends up a link to the Python interpreter's -c option. Should we skip using :option: for that switch, or disable the auto-linking somehow?)
* Add various itemsAndrew M. Kuchling2010-04-291-13/+51
|
* Clarify and fix the documentation for IOBase.close()Antoine Pitrou2010-04-281-2/+4
|
* State clearly that truncate() doesn't move the file position,Antoine Pitrou2010-04-281-6/+3
| | | | and remove a duplicate of its specification.
* Fixed Issue6312 - httplib fails with HEAD requests to pages with ↵Senthil Kumaran2010-04-281-0/+16
| | | | "transfer-encoding: chunked"
* Add version changed note for -m tinkering with sys.argv[0] during the search ↵Nick Coghlan2010-04-281-0/+2
| | | | process
* Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' ↵Nick Coghlan2010-04-281-2/+3
| | | | instead of '-c' while searching for the module to be executed
* Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module ↵Nick Coghlan2010-04-281-23/+39
| | | | containing the exception under test (original patch by Lennart Regebro)
* make slice notation in (r)find docs consistentBenjamin Peterson2010-04-271-7/+7
|
* reject None as the buffering argument like the C implementation does #8546Benjamin Peterson2010-04-271-1/+1
|
* Adding versionadded to various new unittest functions in documentationMichael Foord2010-04-261-0/+8
|
* Adding unittest.removeHandler function / decorator for removing the ↵Michael Foord2010-04-251-2/+25
| | | | signal.SIGINT signal handler. With tests and docs.