Copyright (C) 2019  Asher Gordon <AsDaGo@protonmail.ch>

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.  This file is offered as-is,
without any warranty.

2019-04-07  Asher Gordon  <AsDaGo@protonmail.ch>

	* parse.y (escaped, escaped_str): Add functions to check if a
	character is escaped
	* parse.y (yylex): Fix escaped triple quoted strings so that
	strings like `"""foo\"""bar"""' (which is the string `foo"""bar')
	will work
	* parse.y (yylex): Fix escaped newlines so "\\<newline>" (where
	<newline> is an actual newline) is no longer valid (it was never
	valid Python)

2019-04-07  Asher Gordon  <AsDaGo@protonmail.ch>

	* parse.y (yylex) <quote>: Don't assume that a backslash before a
	quote means the quote was escaped; it could be an escaped
	backslash like so: "\\"

2019-04-06  Asher Gordon  <AsDaGo@protonmail.ch>

	* parse.y (yylex): Make prompt use sys.ps2 when inputing
	multi-line comments or triple-quoted string literals when in
	interactive mode

2019-04-05  Asher Gordon  <AsDaGo@protonmail.ch>

	* c2py.h: Add Savannah bug tracker and bug mailing list to help
	message
	* README: Add Savannah bug tracker and bug mailing list

2019-04-03  Asher Gordon  <AsDaGo@protonmail.ch>

	* input.c (get_input): Made interactive prompt use sys.ps1 and
	sys.ps2 if available

2019-04-02  Asher Gordon  <AsDaGo@protonmail.ch>

	* parse.y (output) <do>: Fixed invalid index for nested do loops

2019-03-30  Asher Gordon  <AsDaGo@protonmail.ch>

	Initial release 0.0.1rc5
