mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	Issue #13513: IOBase docs incorrectly link to the readline module
This commit is contained in:
		
						commit
						80c219b5e7
					
				
					 2 changed files with 4 additions and 1 deletions
				
			
		| 
						 | 
					@ -213,7 +213,7 @@ I/O Base Classes
 | 
				
			||||||
   :class:`IOBase` object can be iterated over yielding the lines in a stream.
 | 
					   :class:`IOBase` object can be iterated over yielding the lines in a stream.
 | 
				
			||||||
   Lines are defined slightly differently depending on whether the stream is
 | 
					   Lines are defined slightly differently depending on whether the stream is
 | 
				
			||||||
   a binary stream (yielding bytes), or a text stream (yielding character
 | 
					   a binary stream (yielding bytes), or a text stream (yielding character
 | 
				
			||||||
   strings).  See :meth:`readline` below.
 | 
					   strings).  See :meth:`~IOBase.readline` below.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   IOBase is also a context manager and therefore supports the
 | 
					   IOBase is also a context manager and therefore supports the
 | 
				
			||||||
   :keyword:`with` statement.  In this example, *file* is closed after the
 | 
					   :keyword:`with` statement.  In this example, *file* is closed after the
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1885,6 +1885,9 @@ C-API
 | 
				
			||||||
Documentation
 | 
					Documentation
 | 
				
			||||||
-------------
 | 
					-------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Issue #13513: Fix io.IOBase documentation to correctly link to the
 | 
				
			||||||
 | 
					  io.IOBase.readline method instead of the readline module.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Issue #13237: Reorganise subprocess documentation to emphasise convenience
 | 
					- Issue #13237: Reorganise subprocess documentation to emphasise convenience
 | 
				
			||||||
  functions and the most commonly needed arguments to Popen.
 | 
					  functions and the most commonly needed arguments to Popen.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue