python.bib 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 Java Benchmark},
  49. booktitle = {Proceedings of the 13th European Conference on Object-Oriented Programming},
  50. series = {Lecture Notes in Computer Science},
  51. volume = 1628,
  52. pages = {92--115},
  53. publisher = {Springer},
  54. year = 1999
  55. }
  56. @article{Dunfield:2021,
  57. author = {Dunfield, Jana and Krishnaswami, Neel},
  58. title = {Bidirectional Typing},
  59. year = 2021,
  60. issue_date = {June 2022},
  61. publisher = {Association for Computing Machinery},
  62. volume = 54,
  63. number = 5,
  64. journal = {ACM Comput. Surv.},
  65. articleno = 98,
  66. numpages = 38,
  67. keywords = {type inference, Type checking}
  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. }