Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request boriel-basic#632 from boriel/refact/update_PLY
Browse files Browse the repository at this point in the history
refact: update PLY
  • Loading branch information
boriel committed Nov 15, 2022
2 parents d6343c6 + f59ec98 commit 6c521bf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 293 deletions.
Binary file modified src/parsetab/tabs.dbm.dat
Binary file not shown.
283 changes: 0 additions & 283 deletions src/ply/README.md

This file was deleted.

5 changes: 2 additions & 3 deletions src/ply/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# PLY package
# Author: David Beazley (dave@dabeaz.com)
# https://dabeaz.com/ply/index.html
# https://github.com/dabeaz/ply

__version__ = "4.0"
__all__ = ["lex", "yacc"]
__version__ = "2022.10.27"
8 changes: 4 additions & 4 deletions src/ply/lex.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# ply: lex.py
#
# Copyright (C) 2001-2020
# Copyright (C) 2001-2022
# David M. Beazley (Dabeaz LLC)
# All rights reserved.
#
Expand Down Expand Up @@ -33,12 +33,12 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------

import copy
import inspect
import os
import re
import sys
import types
import copy
import os
import inspect

# This tuple contains acceptable string types
StringTypes = (str, bytes)
Expand Down
6 changes: 3 additions & 3 deletions src/ply/yacc.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# ply: yacc.py
#
# Copyright (C) 2001-2020
# Copyright (C) 2001-2022
# David M. Beazley (Dabeaz LLC)
# All rights reserved.
#
Expand Down Expand Up @@ -61,10 +61,10 @@
# own risk!
# ----------------------------------------------------------------------------

import inspect
import re
import sys
import types
import sys
import inspect

# -----------------------------------------------------------------------------
# === User configurable parameters ===
Expand Down

0 comments on commit 6c521bf

Please sign in to comment.