python.bib 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. @Article{Anderson73,
  2. author = {T. Anderson and J. Eve and J. Horning},
  3. title = {Efficient LR(1) Parsers},
  4. journal = {Acta Informatica},
  5. year = 1973,
  6. volume = 2,
  7. pages = {2--39}}
  8. @PhdThesis{DeRemer69,
  9. author = {Frank DeRemer},
  10. title = {Practical Translators for LR(k) Languages},
  11. school = {MIT},
  12. year = 1969}
  13. @book{Barry:2016vj,
  14. author = {Paul Barry},
  15. publisher = {O'Reilly},
  16. title = {Head First Python},
  17. year = {2016}}
  18. @book{Matthes:2019vs,
  19. author = {Eric Matthes},
  20. edition = {2nd edition},
  21. publisher = {No Starch Press},
  22. title = {Python Crash Course},
  23. year = {2019}}
  24. @Manual{PSF21:cpython,
  25. title = {Python {GitHub} {Repository}},
  26. organization = {Python Software Foundation},
  27. url = {https://github.com/python},
  28. year = 2021
  29. }
  30. @Manual{PSF21:python_ref,
  31. title = {The Python Language Reference},
  32. organization = {Python Software Foundation},
  33. year = 2021
  34. }
  35. @book{Lutz:2013vp,
  36. author = {Mark Lutz},
  37. edition = {5th edition},
  38. publisher = {O'Reilly},
  39. title = {Learning Python},
  40. year = {2013}
  41. }
  42. @book{Sweigart:2019vn,
  43. author = {Al Sweigart},
  44. publisher = {No Starch Press},
  45. title = {Automate the Boring Stuff with Python},
  46. year = {2019}}
  47. @inproceedings{Dieckmann99,
  48. author = {Sylvia Dieckmann and Urs H{\"{o}}lzle},
  49. title = {A Study of the Allocation Behavior of the SPECjvm98
  50. Java Benchmark},
  51. booktitle = {Proceedings of the 13th European Conference on
  52. Object-Oriented Programming, ECOOP 1999,
  53. \normalfont{Lecture Notes in Computer Science 1628}},
  54. pages = {92--115},
  55. publisher = {Springer},
  56. year = 1999
  57. }
  58. @article{Dunfield:2021,
  59. author = {Dunfield, Jana and Krishnaswami, Neel},
  60. title = {Bidirectional Typing},
  61. year = 2021,
  62. publisher = {Association for Computing Machinery},
  63. volume = 54,
  64. number = 5,
  65. journal = {ACM Comput. Surv.},
  66. articleno = 98,
  67. numpages = 38
  68. }
  69. @Misc{Lehtosalo2021:MyPy,
  70. author = {Jukka Lehtosalo},
  71. title = {MyPy Optional Type Checker for Python},
  72. url = {http://mypy-lang.org/},
  73. year = 2021
  74. }
  75. @article{Pierce:2000,
  76. author = {Pierce, Benjamin C. and Turner, David N.},
  77. title = {Local Type Inference},
  78. year = 2000,
  79. publisher = {Association for Computing Machinery},
  80. volume = 22,
  81. number = 1,
  82. journal = {ACM Trans. Program. Lang. Syst.},
  83. pages = {1--44}
  84. }
  85. @misc{shinan20:_lark_docs,
  86. author = {Erez Shinan},
  87. title = {Welcome to Lark's Documentation!},
  88. url = {https://lark-parser.readthedocs.io/en/latest/index.html},
  89. year = 2020}
  90. @book{Tomita:1985qr,
  91. author = {Masaru Tomita},
  92. publisher = {Kluwer Academic},
  93. title = {Efficient Parsing for Natural Language: A Fast
  94. Algorithm for Practical Systems},
  95. year = {1985}}
  96. @article{Earley:1970ly,
  97. author = {Earley, Jay},
  98. issue = {2},
  99. journal = {Commun. ACM},
  100. month = {February},
  101. numpages = {9},
  102. pages = {94--102},
  103. publisher = {Association for Computing Machinery},
  104. title = {An efficient context-free parsing algorithm},
  105. volume = {13},
  106. year = {1970}}
  107. @book{Hopcroft06:_automata,
  108. author = {John Hopcroft and Rajeev Motwani and Jeffrey Ullman},
  109. title = {Introduction to Automata Theory, Languages, and Computation},
  110. publisher = {Pearson},
  111. year = 2006}
  112. @techreport{Lesk:1975uq,
  113. author = {M. E. Lesk and E. Schmidt},
  114. institution = {Bell Laboratories},
  115. month = {July},
  116. title = {Lex - A Lexical Analyzer Generator},
  117. year = {1975}}
  118. @incollection{Johnson:1979qy,
  119. author = {Stephen C. Johnson},
  120. booktitle = {{UNIX} Programmer's Manual},
  121. date-added = {2007-08-27 13:19:51 -0600},
  122. date-modified = {2007-08-27 13:23:00 -0600},
  123. organization = {AT\&T},
  124. pages = {353--387},
  125. publisher = {Holt, Rinehart, {and} Winston},
  126. title = {{YACC}: Yet Another Compiler-Compiler},
  127. volume = {2},
  128. year = {1979}}