python.bib 3.7 KB

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