¿Hay alguna manera de obtener una marca de tiempo local en mi indicador de IPython?

¿Hay alguna manera de obtener una marca de tiempo local en mi indicador de IPython? Estoy usando IPython 0.10 y Python 2.6 en Windows Vista de 64 bits.

Mi solicitud predeterminada actual es

[C:Python26/Scripts]
|9>

OK, intenté seguir tus instrucciones exactamente. Sin embargo, mi experiencia ha sido que toda la edición de configuración se guarda mejor en miipy_user_conf.py. Para citarlo:

User configuration file for IPython (ipy_user_conf.py)

This is a more flexible and safe way to configure ipython than *rc files
(ipythonrc, ipythonrc-pysh etc.)

This file is always imported on ipython startup. You can import the
ipython extensions you need here (see IPython/Extensions directory).

Feel free to edit this file to customize your ipython experience.

Note that as such this file does nothing, for backwards compatibility.
Consult e.g. file 'ipy_profile_sh.py' for an example of the things 
you can do here.

See http://ipython.scipy.org/moin/IpythonExtensionApi for detailed
description on what you could do here.

Así que ahora tengo estas líneas en main ():

# -- prompt
# A different, more compact set of prompts from the default ones, that
# always show your current location in the filesystem:

o.prompt_in1 = r'\C_LightBlue[\C_LightCyan\Y2\C_LightBlue]\C_Normal\n\C_Green|\#>'
o.prompt_in2 = r'.\D: '
o.prompt_out = r'[\#] '

Y entiendo esto, por ejemplo:

16:49:50 In[9]:1/7
1           [9] 0.14285714285714285

16:50:09 In[10]:

Preguntas:

Que es eso1?

¿Cómo puedo mantener el directorio actual en el indicador? Antes tenía

[C:Python26/Scripts]
|8>

Una vez mas con sentimiento. Lamento mucho el desastre que he hecho. Necesito informar que las líneas que agregué o modifiqué en realidad son:

import_all("os sys random datetime")
o.prompt_in1 = r'\C_LightBlue[\C_LightCyan\Y2\C_LightBlue]\C_Normal\n\C_Green|\#>'
o.prompt_in1 = r'${datetime.now().strftime("%H:%M:%S")}[\#]:'
o.prompt_out = r'[\#] '

Respuestas a la pregunta(1)

Su respuesta a la pregunta