Skip to content

Commit

Permalink
change Buffer's parent class to object (Gallopsled#2035)
Browse files Browse the repository at this point in the history
* change Buffer's parent class to object

* update CHANGELOG.md
  • Loading branch information
tkmikan authored and vboxuser committed Sep 10, 2023
1 parent 508a6a7 commit 4b1efbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ The table below shows which release corresponds to each branch, and what date th
- [#2011][2011] Fix tube's debug output of same byte compression
- [#2023][2023] Support KDE Konsole in run_in_new_terminal function
- [#2027][2027] Fix ELF.libc_start_main_return with glibc 2.34
- [#2035][2035] Change Buffer's parent class to object

[2011]: https://github.com/Gallopsled/pwntools/pull/2011
[2023]: https://github.com/Gallopsled/pwntools/pull/2023
[2027]: https://github.com/Gallopsled/pwntools/pull/2027
[2035]: https://github.com/Gallopsled/pwntools/pull/2035

## 4.8.0 (`beta`)

Expand Down
2 changes: 1 addition & 1 deletion pwnlib/tubes/buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pwnlib.context import context


class Buffer(Exception):
class Buffer(object):
"""
List of strings with some helper routines.
Expand Down

0 comments on commit 4b1efbf

Please sign in to comment.