mirror of
				https://github.com/psycopg/psycopg2.git
				synced 2025-11-04 01:37:31 +03:00 
			
		
		
		
	Dropped recipe to install namedtuple on Python < 2.6
We don't support such Python versions anymore.
This commit is contained in:
		
							parent
							
								
									e42e07258c
								
							
						
					
					
						commit
						a4fcbfed0f
					
				| 
						 | 
					@ -99,20 +99,6 @@ Real dictionary cursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.. versionadded:: 2.3
 | 
					.. versionadded:: 2.3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
These objects require :py:func:`collections.namedtuple` to be found, so it is
 | 
					 | 
				
			||||||
available out-of-the-box only from Python 2.6. Anyway, the namedtuple
 | 
					 | 
				
			||||||
implementation is compatible with previous Python versions, so all you
 | 
					 | 
				
			||||||
have to do is to `download it`__ and make it available where we
 | 
					 | 
				
			||||||
expect it to be... ::
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    from somewhere import namedtuple
 | 
					 | 
				
			||||||
    import collections
 | 
					 | 
				
			||||||
    collections.namedtuple = namedtuple
 | 
					 | 
				
			||||||
    from psycopg.extras import NamedTupleConnection
 | 
					 | 
				
			||||||
    # ...
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
.. __: http://code.activestate.com/recipes/500261-named-tuples/
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
.. autoclass:: NamedTupleCursor
 | 
					.. autoclass:: NamedTupleCursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.. autoclass:: NamedTupleConnection
 | 
					.. autoclass:: NamedTupleConnection
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user