Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revise pyobject_* macro exports #158

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Revive fn_must_use
  • Loading branch information
termoshtt committed May 13, 2018
commit 98764a8488d2399ce3e5ed1a37c369ab400302e0
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(specialization, proc_macro)]
#![feature(specialization, proc_macro, fn_must_use)]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be because you're nightly is an older one. Re-adding this gives a warning on recent nightlies:

warning: this feature has been stable since 1.27.0. Attribute no longer needed
 --> src/lib.rs:1:40
  |
1 | #![feature(specialization, proc_macro, fn_must_use)]
  |                                        ^^^^^^^^^^^
  |
  = note: #[warn(stable_features)] on by default

I've just increased the minimum required version to 1.27.0, so this should be caught by the build script in the future.


//! Rust bindings to the Python interpreter.
//!
Expand Down