about summary refs log tree commit diff stats
path: root/cpp/.traces/run_label
Commit message (Collapse)AuthorAgeFilesLines
* 1246Kartik K. Agaram2015-05-031-2/+2
|
* 1225Kartik K. Agaram2015-04-291-0/+2
| | | | Finally start tracing the actual instructions as they run.
* 1223 - more stable traces for parse scenariosKartik K. Agaram2015-04-291-2/+2
|
* 1194Kartik K. Agaram2015-04-241-0/+1
|
* 1184 - finally, concurrencyKartik K. Agaram2015-04-241-0/+1
|
* 997Kartik K. Agaram2015-03-301-4/+4
|
* 968Kartik K. Agaram2015-03-241-2/+2
|
* 949 - paving the way for jumps to labelsKartik K. Agaram2015-03-171-4/+4
| | | | Addresses for reagents are now computed after all transforms.
* 944 - more break/loop testsKartik K. Agaram2015-03-171-1/+0
| | | | I still can't handle jumps to labels. That'll require some rejiggering..
* 941 - c++: basic break/loop conversionKartik K. Agaram2015-03-161-0/+18
and # ":shell echo %date; read" # Save the original macro function import ranger.core.actions old_get_macros = ranger.core.actions.Actions._get_macros # Define a new macro function import time def get_macros_with_date(self): macros = old_get_macros(self) macros['date'] = time.strftime('%m/%d/%Y') return macros # Overwrite the old one ranger.core.actions.Actions._get_macros = get_macros_with_date