summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #9165: Add math.isfinite and cmath.isfinite.Mark Dickinson2010-07-112-0/+12
|
* #9223: link to Command class reference, and move Command interface docs ↵Georg Brandl2010-07-112-78/+82
| | | | nearer to class docs.
* #7935: cross-reference to ast.literal_eval() from eval() docs.Georg Brandl2010-07-111-0/+3
|
* Allow set literals in literal_eval().Georg Brandl2010-07-111-2/+5
|
* #9184: fix default value for "buffering" param of open().Georg Brandl2010-07-111-1/+1
|
* Fix typo.Georg Brandl2010-07-111-1/+1
|
* #6774: explain shutdown() behavior varying with platform.Georg Brandl2010-07-111-1/+3
|
* #3214 followup: add link to ABC entry.Georg Brandl2010-07-111-3/+3
|
* Silence makeindex.Georg Brandl2010-07-111-0/+2
|
* Issue2007: Removing reference to MSIE Cookie handling by mechanize. ↵Senthil Kumaran2010-07-111-9/+2
| | | | Suggested by John J Lee.
* Add missing docs for re module 'purge' function.R. David Murray2010-07-101-0/+5
|
* Fix 'refleak' introduced by fnmatch cache purge tests.R. David Murray2010-07-101-0/+7
| | | | | This introduces a 'purge' function for the fnmatch module analogous to the 'purge' function in the re module.
* #8564: update docs on integrating doctest/unittest with unittest(2) test ↵Georg Brandl2010-07-101-8/+6
| | | | discovery.
* #8456: fix signature of sqlite3.connect().Georg Brandl2010-07-101-1/+1
|
* #8338: fix outdated class name.Georg Brandl2010-07-101-2/+2
|
* #3214: improve description of duck-typing in glossary.Georg Brandl2010-07-101-3/+3
|
* Emphasize role of count for Pascal string.Georg Brandl2010-07-101-11/+9
|
* Fix markup.Georg Brandl2010-07-102-4/+8
|
* Adding versionchanged to the various Windows os.symlink additions, alongBrian Curtin2010-07-092-7/+15
| | | | with a few minor touchups.
* 2.7 is now stable.Georg Brandl2010-07-091-2/+1
|
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-082-8/+28
| | | | | | | | | | | | | | | | Added Windows support for os.symlink when run on Windows 6.0 or greater, aka Vista. Previous Windows versions will raise NotImplementedError when trying to symlink. Includes numerous test updates and additions to test_os, including a symlink_support module because of the fact that privilege escalation is required in order to run the tests to ensure that the user is able to create symlinks. By default, accounts do not have the required privilege, so the escalation code will have to be exposed later (or documented on how to do so). I'll be following up with that work next. Note that the tests use ctypes, which was agreed on during the PyCon language summit.
* Turn more notes into comments.Georg Brandl2010-07-073-7/+6
|
* Make comment out of an awkward note.Georg Brandl2010-07-071-3/+3
|
* Fix typo.Georg Brandl2010-07-061-1/+1
|
* Minor improvements to logging documentation.Vinay Sajip2010-07-061-1/+6
|
* Change 'lowered' to 'lowercased'Senthil Kumaran2010-07-061-1/+1
|
* #9158: Fix y* format of PyArg_Parse*() functions documentationVictor Stinner2010-07-051-1/+1
|
* #9166: NotImplemented is not an exception.Georg Brandl2010-07-051-1/+1
|
* Fix: Issue9091 Minor documentation clarification.Senthil Kumaran2010-07-051-1/+2
|
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-031-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This required moving the class from importlib/abc.py into importlib/_bootstrap.py and jiggering some code to work better with the class. This included changing how the file finder worked to better meet import semantics. This also led to fixing importlib to handle the empty string from sys.path as import currently does (and making me wish we didn't support that instead just required people to insert '.' instead to represent cwd). It also required making the new set_data abstractmethod create any needed subdirectories implicitly thanks to __pycache__ (it was either this or grow the SourceLoader ABC to gain an 'exists' method and either a mkdir method or have set_data with no data arg mean to create a directory). Lastly, as an optimization the file loaders cache the file path where the finder found something to use for loading (this is thanks to having a sourceless loader separate from the source loader to simplify the code and cut out stat calls). Unfortunately test_runpy assumed a loader would always work for a module, even if you changed from underneath it what it was expected to work with. By simply dropping the previous loader in test_runpy so the proper loader can be returned by the finder fixed the failure. At this point importlib deviates from import on two points: 1. The exception raised when trying to import a file is different (import does an explicit file check to print a special message, importlib just says the path cannot be imported as if it was just some module name). 2. the co_filename on a code object is not being set to where bytecode was actually loaded from instead of where the marshalled code object originally came from (a solution for this has already been agreed upon on python-dev but has not been implemented yet; issue8611).
* Fix Issue5468 - urlencode to handle bytes and other alternate encodings.Senthil Kumaran2010-07-031-17/+23
| | | | (Extensive tests provided). Patch by Dan Mahn.
* Remove the need for a "()" empty argument list after opcodes.Georg Brandl2010-07-032-67/+76
|
* Fix markup.Georg Brandl2010-07-031-1/+0
|
* Merged revisions 82483 via svnmerge fromGeorg Brandl2010-07-031-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82483 | georg.brandl | 2010-07-03 12:25:54 +0200 (Sa, 03 Jul 2010) | 1 line Add link to bytecode docs. ........
* Use the right role.Georg Brandl2010-07-031-1/+1
|
* Wrap and use the correct directive.Georg Brandl2010-07-031-1/+7
|
* Merged revisions 82476 via svnmerge fromMark Dickinson2010-07-031-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82476 | mark.dickinson | 2010-07-03 10:15:09 +0100 (Sat, 03 Jul 2010) | 1 line Fix typo in sys.float_info docs. ........
* Issue 6507: accept source strings directly in dis.dis(). Original patch by ↵Nick Coghlan2010-07-031-4/+7
| | | | Daniel Urban
* Merged revisions 82455,82457,82459 via svnmerge fromEzio Melotti2010-07-021-24/+155
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82455 | eric.smith | 2010-07-03 00:44:16 +0300 (Sat, 03 Jul 2010) | 1 line Moved period outside paren, where it belongs. ........ r82457 | ezio.melotti | 2010-07-03 01:17:29 +0300 (Sat, 03 Jul 2010) | 1 line #9139: Add examples for str.format(). ........ r82459 | ezio.melotti | 2010-07-03 01:50:39 +0300 (Sat, 03 Jul 2010) | 1 line #9139: the thousands separator is new in 2.7. Also add a missing variable in the example. ........
* Some people have mistaken Python bytecode as being stable and unchanging. InBrett Cannon2010-07-022-8/+12
| | | | | | | | reality it's simply an implementation detail for CPython. This point is now clearly documented in both the docs for dis and the glossary. Closes issue #7829. Thanks to Terry Reedy for some initial suggestions on wording.
* Merged revisions 82446 via svnmerge fromMark Dickinson2010-07-021-35/+61
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82446 | mark.dickinson | 2010-07-02 19:06:52 +0100 (Fri, 02 Jul 2010) | 1 line Clarify sys.float_info documentation. ........
* Merged revisions 82441 via svnmerge fromNick Coghlan2010-07-021-7/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82441 | nick.coghlan | 2010-07-03 02:01:53 +1000 (Sat, 03 Jul 2010) | 1 line Issue 8202 actually caused an unintended behavioural change and was reverted in 2.7 - remove reference from What's New ........
* Merged revisions 82439 via svnmerge fromNick Coghlan2010-07-021-6/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82439 | nick.coghlan | 2010-07-03 01:50:14 +1000 (Sat, 03 Jul 2010) | 1 line Fix a couple of minor nits in What's New before the release goes out ........
* Merged revisions 82433 via svnmerge fromGeorg Brandl2010-07-021-15/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82433 | georg.brandl | 2010-07-02 09:33:50 +0200 (Fr, 02 Jul 2010) | 1 line Grammar and markup fixes. ........
* Merged revisions 82420 via svnmerge fromBenjamin Peterson2010-07-011-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82420 | benjamin.peterson | 2010-07-01 12:45:52 -0500 (Thu, 01 Jul 2010) | 1 line fix fixer name ........
* Issue 9110. Adding ContextDecorator to contextlib. This enables the creation ↵Michael Foord2010-06-301-0/+57
| | | | of APIs that act as decorators as well as context managers. contextlib.contextmanager changed to use ContextDecorator.
* Merged revisions 82379 via svnmerge fromMark Dickinson2010-06-291-1/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82379 | mark.dickinson | 2010-06-29 21:09:12 +0100 (Tue, 29 Jun 2010) | 1 line Issue #1789: clarify that the 'size' column in struct docs refers to standard size. ........
* update for nonlocal keywordBenjamin Peterson2010-06-291-4/+6
|
* Make a sentence a little less awkward.Brett Cannon2010-06-291-2/+1
|
* note that byte strings can be raw, too #9114Benjamin Peterson2010-06-291-9/+9
|