summaryrefslogtreecommitdiffstats
path: root/Doc/library/configparser.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #11670: readfp(fp) parameter name is different to read_file(f)Martin Panter2017-01-291-6/+6
|
* Docs: Correctly link to the methodsJesus Cea2016-09-191-19/+22
|
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-1/+1
| | | | Based on patch by Ville Skyttä.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+2
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-5/+5
| | | | Original patch by James Edwards.
* Closes #18159: ConfigParser getters not available on SectionProxyŁukasz Langa2014-09-151-11/+35
|
* Fix full-stop whitespace in configparser docsŁukasz Langa2014-09-151-42/+44
|
* Fix Issue #21528 - Fix documentation typosDonald Stufft2014-05-201-2/+2
|
* #13437: link to the source code for a few more modulesAndrew Kuchling2014-03-191-0/+2
|
* Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-1/+2
|
* Issue #18452: fix several "occurrence" typos (reported by Févry Thibault).Ned Deily2013-07-141-1/+1
|
* Fixes `parser.clean()` reported in issue #16820.Łukasz Langa2012-12-311-1/+7
|
* #16085: Don't promote shadowing builtins in the configparser example.R David Murray2012-09-291-7/+7
|
* #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-1/+2
| | | | Jerdonek.
* #15865: add "*" in the signature to document keyword-only args in the docs. ↵Ezio Melotti2012-09-081-5/+11
| | | | Patch by Chris Jerdonek.
* removed misleading editing leftoversŁukasz Langa2011-09-021-4/+0
|
* Avoid using the default reST role. Makes Doc/tools/rstlint.py happy.Éric Araujo2011-09-011-3/+3
|
* Actually print out the description of what changed.Łukasz Langa2011-05-101-1/+0
|
* Closes #12036: ConfigParser: Document items() added the vars dictionary to ↵Łukasz Langa2011-05-091-0/+5
| | | | the result
* Style updates for the #11670 solution after post-commit review by Ezio Melotti:Łukasz Langa2011-04-281-23/+17
| | | | | | http://mail.python.org/pipermail/python-checkins/2011-April/104688.html Thanks!
* Fixed trailing whitespace in the ReST file.Łukasz Langa2011-04-271-3/+3
|
* Closes #11670: configparser read_file now iterates over f.Łukasz Langa2011-04-271-5/+24
|
* #11027: documented how to override SECTCREŁukasz Langa2011-01-281-0/+32
|
* 100% test coverage, better mapping protocol compatibility, some minor bugfixesŁukasz Langa2010-12-171-16/+26
|
* configparser API cleanup: default values now sensible, slightly incompatible.Łukasz Langa2010-12-171-38/+89
| | | | | Backwards compatible alternative values possible as documented. Done by Łukasz Langa, approved by Raymond and Fred.
* Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser.Łukasz Langa2010-12-161-60/+39
| | | | Life is beatiful once again.
* configparser: fixed inconsistency where in SafeConfigParser option valuesŁukasz Langa2010-12-041-4/+18
| | | | | were ensured to be strings but section names and option keys were not. Behaviour unchanged for RawConfigParser and ConfigParser.
* Issue 10499: Modular interpolation in configparserŁukasz Langa2010-12-031-224/+259
|
* Let’s keep “throw” for the generator method and use “raise” elsewhere.Éric Araujo2010-11-301-1/+1
|
* Issue #10489: removed broken `__name__` support from configparserŁukasz Langa2010-11-211-6/+1
|
* fix copy-editing level nitsFred Drake2010-11-131-103/+105
|
* Review the new configparser docs.Georg Brandl2010-11-111-473/+475
|
* Issue #5412: extend configparser to support mapping accessŁukasz Langa2010-11-101-288/+759
|
* Fix typo.Georg Brandl2010-11-081-1/+1
|
* #9911: doc copyedits.Georg Brandl2010-09-211-1/+1
|
* Add cross-references to the glossary entry for file objects.Antoine Pitrou2010-09-151-1/+1
|
* add consistent support for the vars and default arguments on allFred Drake2010-09-041-21/+53
| | | | | configuration parser classes (http://bugs.python.org/issue9421)
* Consistency check for versionadded/changed directives.Georg Brandl2010-08-171-0/+4
|
* Replace readfp() with read_file() in configparser documentation.Florent Xicluna2010-08-151-3/+3
|
* issue #9452:Fred Drake2010-08-091-22/+73
| | | | | Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions.
* #9407: document configparser.Error.Georg Brandl2010-07-291-0/+5
|
* #1090076: explain the behavior of *vars* in get() better.Georg Brandl2010-07-291-7/+9
|
* #9411: allow selecting an encoding for configparser files. Also adds a new ↵Georg Brandl2010-07-291-12/+16
| | | | test config file to test special cases.
* #1682942: add some ConfigParser features: alternate delimiters, alternate ↵Georg Brandl2010-07-281-80/+148
| | | | comments, empty lines in values. Also enhance the docs with more examples and mention SafeConfigParser before ConfigParser. Patch by Lukas Langa, review by myself, Eric and Ezio.
* Merged revisions 78232 via svnmerge fromFred Drake2010-02-191-4/+55
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78232 | fred.drake | 2010-02-19 00:24:30 -0500 (Fri, 19 Feb 2010) | 3 lines - apply patch from issue 7005 - add corresponding documentation ........
* Merged revisions ↵Georg Brandl2009-10-271-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,75602-75607,75610-75613,75616-75617,75623,75627,75640,75647,75696,75795 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75365 | georg.brandl | 2009-10-11 22:16:16 +0200 (So, 11 Okt 2009) | 1 line Fix broken links found by "make linkcheck". scipy.org seems to be done right now, so I could not verify links going there. ........ r75394 | georg.brandl | 2009-10-13 20:10:59 +0200 (Di, 13 Okt 2009) | 1 line Fix markup. ........ r75402 | georg.brandl | 2009-10-14 17:51:48 +0200 (Mi, 14 Okt 2009) | 1 line #7125: fix typo. ........ r75403 | georg.brandl | 2009-10-14 17:57:46 +0200 (Mi, 14 Okt 2009) | 1 line #7126: os.environ changes *do* take effect in subprocesses started with os.system(). ........ r75418 | georg.brandl | 2009-10-14 20:48:32 +0200 (Mi, 14 Okt 2009) | 1 line #7116: str.join() takes an iterable. ........ r75459 | georg.brandl | 2009-10-17 10:57:43 +0200 (Sa, 17 Okt 2009) | 1 line Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__. ........ r75484 | georg.brandl | 2009-10-18 09:58:12 +0200 (So, 18 Okt 2009) | 1 line Fix missing word. ........ r75592 | georg.brandl | 2009-10-22 09:05:48 +0200 (Do, 22 Okt 2009) | 1 line Fix punctuation. ........ r75593 | georg.brandl | 2009-10-22 09:06:49 +0200 (Do, 22 Okt 2009) | 1 line Revert unintended change. ........ r75594 | georg.brandl | 2009-10-22 09:56:02 +0200 (Do, 22 Okt 2009) | 1 line Fix markup. ........ r75595 | georg.brandl | 2009-10-22 09:56:56 +0200 (Do, 22 Okt 2009) | 1 line Fix duplicate target. ........ r75596 | georg.brandl | 2009-10-22 10:05:04 +0200 (Do, 22 Okt 2009) | 1 line Add a new directive marking up implementation details and start using it. ........ r75600 | georg.brandl | 2009-10-22 13:01:46 +0200 (Do, 22 Okt 2009) | 1 line Make it more robust. ........ r75602 | georg.brandl | 2009-10-22 13:28:06 +0200 (Do, 22 Okt 2009) | 1 line Document new directive. ........ r75603 | georg.brandl | 2009-10-22 13:28:23 +0200 (Do, 22 Okt 2009) | 1 line Allow short form with text as argument. ........ r75604 | georg.brandl | 2009-10-22 13:36:50 +0200 (Do, 22 Okt 2009) | 1 line Fix stylesheet for multi-paragraph impl-details. ........ r75605 | georg.brandl | 2009-10-22 13:48:10 +0200 (Do, 22 Okt 2009) | 1 line Use "impl-detail" directive where applicable. ........ r75606 | georg.brandl | 2009-10-22 17:00:06 +0200 (Do, 22 Okt 2009) | 1 line #6324: membership test tries iteration via __iter__. ........ r75607 | georg.brandl | 2009-10-22 17:04:09 +0200 (Do, 22 Okt 2009) | 1 line #7088: document new functions in signal as Unix-only. ........ r75610 | georg.brandl | 2009-10-22 17:27:24 +0200 (Do, 22 Okt 2009) | 1 line Reorder __slots__ fine print and add a clarification. ........ r75611 | georg.brandl | 2009-10-22 17:42:32 +0200 (Do, 22 Okt 2009) | 1 line #7035: improve docs of the various <method>_errors() functions, and give them docstrings. ........ r75612 | georg.brandl | 2009-10-22 17:52:15 +0200 (Do, 22 Okt 2009) | 1 line #7156: document curses as Unix-only. ........ r75613 | georg.brandl | 2009-10-22 17:54:35 +0200 (Do, 22 Okt 2009) | 1 line #6977: getopt does not support optional option arguments. ........ r75616 | georg.brandl | 2009-10-22 18:17:05 +0200 (Do, 22 Okt 2009) | 1 line Add proper references. ........ r75617 | georg.brandl | 2009-10-22 18:20:55 +0200 (Do, 22 Okt 2009) | 1 line Make printout margin important. ........ r75623 | georg.brandl | 2009-10-23 10:14:44 +0200 (Fr, 23 Okt 2009) | 1 line #7188: fix optionxform() docs. ........ r75627 | fred.drake | 2009-10-23 15:04:51 +0200 (Fr, 23 Okt 2009) | 2 lines add further note about what's passed to optionxform ........ r75640 | neil.schemenauer | 2009-10-23 21:58:17 +0200 (Fr, 23 Okt 2009) | 2 lines Improve some docstrings in the 'warnings' module. ........ r75647 | georg.brandl | 2009-10-24 12:04:19 +0200 (Sa, 24 Okt 2009) | 1 line Fix markup. ........ r75696 | georg.brandl | 2009-10-25 21:25:43 +0100 (So, 25 Okt 2009) | 1 line Fix a demo. ........ r75795 | georg.brandl | 2009-10-27 16:10:22 +0100 (Di, 27 Okt 2009) | 1 line Fix a strange mis-edit. ........
* #6969: make it explicit that configparser writes/reads text files, and fix ↵Georg Brandl2009-09-221-6/+9
| | | | the example.
* Merged revisions 74209 via svnmerge fromGeorg Brandl2009-07-261-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line builtin -> built-in. ........
* Merged revisions 72009 via svnmerge fromGeorg Brandl2009-04-271-3/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72009 | georg.brandl | 2009-04-27 17:29:09 +0200 (Mo, 27 Apr 2009) | 3 lines Demote warnings to notices where appropriate, following the goal that as few "red box" warnings should clutter the docs as possible. Part 1: stuff that gets merged to Py3k. ........
* Update signature style for optional arguments, part 3.Georg Brandl2009-04-101-6/+6
|